From 9a741aee62831fb98afb1c9fab8bff7dfe8c2a7f Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Tue, 3 Oct 2017 01:28:54 +0200 Subject: [PATCH] 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 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/include/std/charconv | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) 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 -- 2.30.2