forked from boostorg/regex
Switch from deprecated macros to new shiny ones; no functionality change
[SVN r79418]
This commit is contained in:
@ -74,7 +74,7 @@ void test_match(const std::string& re, const std::string& text, const std::strin
|
||||
std::cout << "\txpressive regex: " << time << "s\n";
|
||||
}
|
||||
#endif
|
||||
#ifndef BOOST_NO_0X_HDR_REGEX
|
||||
#ifndef BOOST_NO_CXX11_HDR_REGEX
|
||||
if(time_std == true)
|
||||
{
|
||||
time = stdr::time_match(re, text, icase);
|
||||
@ -143,7 +143,7 @@ void test_find_all(const std::string& re, const std::string& text, const std::st
|
||||
std::cout << "\txpressive regex: " << time << "s\n";
|
||||
}
|
||||
#endif
|
||||
#ifndef BOOST_NO_0X_HDR_REGEX
|
||||
#ifndef BOOST_NO_CXX11_HDR_REGEX
|
||||
if(time_std == true)
|
||||
{
|
||||
time = stdr::time_find_all(re, text, icase);
|
||||
|
Reference in New Issue
Block a user