Fully qualified use of "extended" flag, to keep gcc on Solaris happy.

[SVN r40086]
This commit is contained in:
John Maddock
2007-10-16 16:11:30 +00:00
parent 960c0a3bbc
commit 9ec9aa9cbc
6 changed files with 274 additions and 274 deletions

View File

@ -111,7 +111,7 @@ void test_replace()
TEST_REGEX_REPLACE("(a(c)?)|(b)", perl, "acab", match_default|format_all, "(?1(?2(C:):A):B:)", "C:AB:");
TEST_REGEX_REPLACE("x", icase, "xx", match_default|format_all, "a", "aa");
TEST_REGEX_REPLACE("x", basic|icase, "xx", match_default|format_all, "a", "aa");
TEST_REGEX_REPLACE("x", extended|icase, "xx", match_default|format_all, "a", "aa");
TEST_REGEX_REPLACE("x", boost::regex::extended|icase, "xx", match_default|format_all, "a", "aa");
TEST_REGEX_REPLACE("x", emacs|icase, "xx", match_default|format_all, "a", "aa");
TEST_REGEX_REPLACE("x", literal|icase, "xx", match_default|format_all, "a", "aa");
// literals: