Skip to content

Commit

Permalink
LWG2053
Browse files Browse the repository at this point in the history
  • Loading branch information
sdutoit committed Feb 26, 2012
1 parent ae9d88e commit ab3aaf6
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions source/regex.tex
Original file line number Diff line number Diff line change
Expand Up @@ -638,16 +638,16 @@
namespace std {
namespace regex_constants {
typedef @\textit{T1}@ syntax_option_type;
static constexpr syntax_option_type icase = @\unspec@;
static constexpr syntax_option_type nosubs = @\unspec@;
static constexpr syntax_option_type optimize = @\unspec@;
static constexpr syntax_option_type collate = @\unspec@;
static constexpr syntax_option_type ECMAScript = @\unspec@;
static constexpr syntax_option_type basic = @\unspec@;
static constexpr syntax_option_type extended = @\unspec@;
static constexpr syntax_option_type awk = @\unspec@;
static constexpr syntax_option_type grep = @\unspec@;
static constexpr syntax_option_type egrep = @\unspec@;
constexpr syntax_option_type icase = @\unspec@;
constexpr syntax_option_type nosubs = @\unspec@;
constexpr syntax_option_type optimize = @\unspec@;
constexpr syntax_option_type collate = @\unspec@;
constexpr syntax_option_type ECMAScript = @\unspec@;
constexpr syntax_option_type basic = @\unspec@;
constexpr syntax_option_type extended = @\unspec@;
constexpr syntax_option_type awk = @\unspec@;
constexpr syntax_option_type grep = @\unspec@;
constexpr syntax_option_type egrep = @\unspec@;
}
}
\end{codeblock}
Expand Down Expand Up @@ -771,19 +771,19 @@
namespace std {
namespace regex_constants{
typedef @\textit{T2}@ match_flag_type;
static constexpr match_flag_type match_default = 0
static constexpr match_flag_type match_not_bol = @\unspec@;
static constexpr match_flag_type match_not_eol = @\unspec@;
static constexpr match_flag_type match_not_bow = @\unspec@;
static constexpr match_flag_type match_not_eow = @\unspec@;
static constexpr match_flag_type match_any = @\unspec@;
static constexpr match_flag_type match_not_null = @\unspec@;
static constexpr match_flag_type match_continuous = @\unspec@;
static constexpr match_flag_type match_prev_avail = @\unspec@;
static constexpr match_flag_type format_default = 0;
static constexpr match_flag_type format_sed = @\unspec@;
static constexpr match_flag_type format_no_copy = @\unspec@;
static constexpr match_flag_type format_first_only = @\unspec@;
constexpr match_flag_type match_default = 0
constexpr match_flag_type match_not_bol = @\unspec@;
constexpr match_flag_type match_not_eol = @\unspec@;
constexpr match_flag_type match_not_bow = @\unspec@;
constexpr match_flag_type match_not_eow = @\unspec@;
constexpr match_flag_type match_any = @\unspec@;
constexpr match_flag_type match_not_null = @\unspec@;
constexpr match_flag_type match_continuous = @\unspec@;
constexpr match_flag_type match_prev_avail = @\unspec@;
constexpr match_flag_type format_default = 0;
constexpr match_flag_type format_sed = @\unspec@;
constexpr match_flag_type format_no_copy = @\unspec@;
constexpr match_flag_type format_first_only = @\unspec@;
}
}
\end{codeblock}
Expand Down Expand Up @@ -891,19 +891,19 @@
namespace std {
namespace regex_constants {
typedef @\textit{T3}@ error_type;
static constexpr error_type error_collate = @\unspec@;
static constexpr error_type error_ctype = @\unspec@;
static constexpr error_type error_escape = @\unspec@;
static constexpr error_type error_backref = @\unspec@;
static constexpr error_type error_brack = @\unspec@;
static constexpr error_type error_paren = @\unspec@;
static constexpr error_type error_brace = @\unspec@;
static constexpr error_type error_badbrace = @\unspec@;
static constexpr error_type error_range = @\unspec@;
static constexpr error_type error_space = @\unspec@;
static constexpr error_type error_badrepeat = @\unspec@;
static constexpr error_type error_complexity = @\unspec@;
static constexpr error_type error_stack = @\unspec@;
constexpr error_type error_collate = @\unspec@;
constexpr error_type error_ctype = @\unspec@;
constexpr error_type error_escape = @\unspec@;
constexpr error_type error_backref = @\unspec@;
constexpr error_type error_brack = @\unspec@;
constexpr error_type error_paren = @\unspec@;
constexpr error_type error_brace = @\unspec@;
constexpr error_type error_badbrace = @\unspec@;
constexpr error_type error_range = @\unspec@;
constexpr error_type error_space = @\unspec@;
constexpr error_type error_badrepeat = @\unspec@;
constexpr error_type error_complexity = @\unspec@;
constexpr error_type error_stack = @\unspec@;
}
}
\end{codeblock}
Expand Down

0 comments on commit ab3aaf6

Please sign in to comment.