mirror of
https://github.com/boostorg/regex.git
synced 2025-07-01 06:40:57 +02:00
12 lines
184 B
C++
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);
|
||
|
}
|