Added support for forward lookahead asserts.

[SVN r12455]
This commit is contained in:
John Maddock
2002-01-23 12:42:31 +00:00
parent e993619390
commit c07c4e0a11
7 changed files with 124 additions and 23 deletions

View File

@ -118,7 +118,10 @@ struct BOOST_REGEX_DECL regex_traits_base
syntax_Z = 51, // for \Z
syntax_G = 52, // for \G
syntax_max = 53
// new extentions:
syntax_not = 53, // for (?!...)
syntax_max = 54
};
};