diff options
author | Jason Merrill <jason@redhat.com> | 2024-09-06 12:12:24 -0400 |
---|---|---|
committer | Jason Merrill <jason@redhat.com> | 2024-09-06 15:16:40 -0400 |
commit | e4b64bea337d9ac936c555154f9d60c4876b65d3 (patch) | |
tree | 2397db0a0771864ab5619bf34b136e4f9704eff1 | |
parent | 1a1f818c60636f219edd2cb93485aa08e1a36c88 (diff) | |
download | gcc-e4b64bea337d9ac936c555154f9d60c4876b65d3.zip gcc-e4b64bea337d9ac936c555154f9d60c4876b65d3.tar.gz gcc-e4b64bea337d9ac936c555154f9d60c4876b65d3.tar.bz2 |
libstdc++: add missing __
I forgot the __ in my recent r15-3500-g1914ca8791ce4e.
libstdc++-v3/ChangeLog:
* include/bits/regex_constants.h: Add __ to attribute.
-rw-r--r-- | libstdc++-v3/include/bits/regex_constants.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/regex_constants.h b/libstdc++-v3/include/bits/regex_constants.h index 4148093..cb70a86 100644 --- a/libstdc++-v3/include/bits/regex_constants.h +++ b/libstdc++-v3/include/bits/regex_constants.h @@ -66,7 +66,7 @@ namespace regex_constants * elements @c ECMAScript, @c basic, @c extended, @c awk, @c grep, @c egrep * %set. */ - enum [[gnu::flag_enum]] syntax_option_type : unsigned int + enum [[__gnu__::__flag_enum__]] syntax_option_type : unsigned int { _S_icase = 1 << 0, _S_nosubs = 1 << 1, |