Files
boost_regex/test/test_warnings.cpp
2018-07-22 17:16:21 +01:00

12 lines
184 B
C++

#ifdef _MSC_VER
#pragma warning(disable:4820 4668)
#endif
#include <boost/regex.hpp>
void test_proc()
{
std::string text, re;
boost::regex exp(re);
regex_match(text, exp);
}