diff options
author | Tim Shen <timshen91@gmail.com> | 2013-08-20 10:36:42 +0000 |
---|---|---|
committer | Tim Shen <timshen@gcc.gnu.org> | 2013-08-20 10:36:42 +0000 |
commit | f6f0407c4c52058175ba35f776d7b1aaadd8cb40 (patch) | |
tree | 1286369a0288d5fc86e3e08df366be91c5d6eb4a /libstdc++-v3 | |
parent | 8edb8dc817480a2496c58727439a4c8254ff09eb (diff) | |
download | gcc-f6f0407c4c52058175ba35f776d7b1aaadd8cb40.zip gcc-f6f0407c4c52058175ba35f776d7b1aaadd8cb40.tar.gz gcc-f6f0407c4c52058175ba35f776d7b1aaadd8cb40.tar.bz2 |
regex_constants.h: Add underlying `unsigned int` for enum syntax_option_type.
2013-08-20 Tim Shen <timshen91@gmail.com>
* include/bits/regex_constants.h: Add underlying `unsigned int` for
enum syntax_option_type.
From-SVN: r201872
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/regex_constants.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6715e53..737f89c 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2013-08-20 Tim Shen <timshen91@gmail.com> + + * include/bits/regex_constants.h: Add underlying `unsigned int` for + enum syntax_option_type. + 2013-08-18 Tim Shen <timshen91@gmail.com> * include/bits/regex_automaton.h: _S_opcode_backref. diff --git a/libstdc++-v3/include/bits/regex_constants.h b/libstdc++-v3/include/bits/regex_constants.h index 6ac65d7..03e25e2 100644 --- a/libstdc++-v3/include/bits/regex_constants.h +++ b/libstdc++-v3/include/bits/regex_constants.h @@ -77,7 +77,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION * elements @c ECMAScript, @c basic, @c extended, @c awk, @c grep, @c egrep * %set. */ - enum syntax_option_type + enum syntax_option_type : unsigned int { /** * Specifies that the matching of regular expressions against a character |