From: Jakub Jelinek Date: Mon, 2 Oct 2017 23:28:54 +0000 (+0200) Subject: charconv (__unsigned_least_t): Fix number of closing >s for !_GLIBCXX_USE_INT128. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9a741aee62831fb98afb1c9fab8bff7dfe8c2a7f;p=gcc.git charconv (__unsigned_least_t): Fix number of closing >s for !_GLIBCXX_USE_INT128. * include/std/charconv (__unsigned_least_t): Fix number of closing >s for !_GLIBCXX_USE_INT128. From-SVN: r253371 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 12ac61d6d61..4559f79b2f9 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2017-10-03 Jakub Jelinek + + * include/std/charconv (__unsigned_least_t): Fix number of closing >s for + !_GLIBCXX_USE_INT128. + 2017-10-02 Jonathan Wakely * include/Makefile.am: Add new header. diff --git a/libstdc++-v3/include/std/charconv b/libstdc++-v3/include/std/charconv index b8221e4e434..e5d6c106f70 100644 --- a/libstdc++-v3/include/std/charconv +++ b/libstdc++-v3/include/std/charconv @@ -81,7 +81,11 @@ namespace __detail #if _GLIBCXX_USE_INT128 conditional_t<(sizeof(_Tp) <= sizeof(__int128)), unsigned __int128, #endif - void>>>>; + void +#if _GLIBCXX_USE_INT128 + > +#endif + >>>; // Generic implementation for arbitrary bases. template