Files
regex/test/test_warnings.cpp

12 lines
184 B
C++
Raw Normal View History

#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);
}