• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2 *
3 * Copyright (c) 2018
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 
13 #ifdef _MSC_VER
14 #pragma warning(disable:4820 4668)
15 #endif
16 
17 #ifdef __APPLE_CC__
18 #pragma clang diagnostic ignored "-Wc++11-long-long"
19 #endif
20 
21 #include <boost/regex.hpp>
22 
test_proc()23 void test_proc()
24 {
25    std::string text, re;
26    boost::regex exp(re);
27    regex_match(text, exp);
28 }
29 
30