Switch from deprecated macros to new shiny ones; no functionality change

[SVN r79418]
This commit is contained in:
Marshall Clow
2012-07-11 16:21:55 +00:00
parent c2d2f656da
commit 4ab0ffee0a
3 changed files with 10 additions and 10 deletions

View File

@ -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);