]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/regex/test/test_windows_defs_3.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / regex / test / test_windows_defs_3.cpp
CommitLineData
1e59de90
TL
1/*
2*
3* Copyright (c) 2021
4* John Maddock
5*
6* Use, modification and distribution are subject to the
7* Boost Software License, Version 1.0. (See accompanying file
8* LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9*
10*/
11
12#if defined(_WIN32) && !defined(BOOST_REGEX_NO_W32)
13//
14// Make sure our forward declarations match those in windows.h:
15//
16
17#include <windows.h>
18#include <boost/regex.hpp>
19
20void test_proc()
21{
22 std::string text, re;
23 boost::regex exp(re);
24 regex_match(text, exp);
25}
26
27#endif