diff --git a/doc/Attic/match_flag_type.html b/doc/Attic/match_flag_type.html
index 3d6e83d1..20700231 100644
--- a/doc/Attic/match_flag_type.html
+++ b/doc/Attic/match_flag_type.html
@@ -26,14 +26,14 @@
The type match_flag_type
is an implementation defined bitmask type
- (17.3.2.1.2) that controls how a regular expression is matched against a
+
The type match_flag_type
is an implementation specific bitmask
+ type (17.3.2.1.2) that controls how a regular expression is matched against a
character sequence. The behavior of the format flags is descibed in more
detail in the format syntax guide.
namespace boost{ namespace regex_constants{ -typedef bitmask_type match_flag_type; +typedef implemenation-specific-bitmask-type match_flag_type; static const match_flag_type match_default = 0; static const match_flag_type match_not_bob; @@ -62,8 +62,8 @@ static const match_flag_type format_all; } // namespace boost
The type match_flag_type
is an implementation defined bitmask type
- (17.3.2.1.2). When matching a regular expression against a sequence of
+
The type match_flag_type
is an implementation specific bitmask
+ type (17.3.2.1.2). When matching a regular expression against a sequence of
characters [first, last) then setting its elements has the effects listed in
the table below:
Type syntax_option type is an implementation defined bitmask type that controls - how a regular expression string is to be interpreted. For convenience - note that all the constants listed here, are also duplicated within the scope - of class template basic_regex.
+Type syntax_option type is an implementation specific bitmask type that + controls how a regular expression string is to be interpreted. For + convenience note that all the constants listed here, are also duplicated within + the scope of class template basic_regex.
namespace std{ namespace regex_constants{ -typedef bitmask_type syntax_option_type; +typedef implementation-specific-bitmask-type + + syntax_option_type; // these flags are standardized: static const syntax_option_type normal; static const syntax_option_type icase; @@ -50,7 +52,7 @@ static const syntax_option_type perl;
// these are boost.regex specific:
s } // namespace regex_constants } // namespace std
The type syntax_option_type
is an implementation defined bitmask
+
The type syntax_option_type
is an implementation specific bitmask
type (17.3.2.1.2). Setting its elements has the effects listed in the table
below, a valid value of type syntax_option_type
will always have
exactly one of the elements normal, basic, extended, awk, grep, egrep, sed
@@ -314,18 +316,15 @@ static const syntax_option_type perl;
// these are boost.regex specific:
s
Revised 24 Oct 2003
© Copyright John Maddock 1998- - - 2003
+ 2003Use, modification and distribution are subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)