diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/name-lookup.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 5d909ef..e2b9be5 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2019-02-19 Tom Honermann <tom@honermann.net> + + * name-lookup.c (get_std_name_hint): Added u8string as a name hint. + 2019-02-18 Jason Merrill <jason@redhat.com> PR c++/89336 - multiple stores in constexpr stmt. diff --git a/gcc/cp/name-lookup.c b/gcc/cp/name-lookup.c index 959f43b..2e1b851 100644 --- a/gcc/cp/name-lookup.c +++ b/gcc/cp/name-lookup.c @@ -5765,6 +5765,7 @@ get_std_name_hint (const char *name) {"basic_string", "<string>", cxx98}, {"string", "<string>", cxx98}, {"wstring", "<string>", cxx98}, + {"u8string", "<string>", cxx2a}, {"u16string", "<string>", cxx11}, {"u32string", "<string>", cxx11}, /* <string_view>. */ |