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
This commit is contained in:
Jakub Jelinek 2017-10-03 01:28:54 +02:00 committed by Jakub Jelinek
parent 5aab83d53f
commit 9a741aee62
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2017-10-03 Jakub Jelinek <jakub@redhat.com>
* include/std/charconv (__unsigned_least_t): Fix number of closing >s for
!_GLIBCXX_USE_INT128.
2017-10-02 Jonathan Wakely <jwakely@redhat.com>
* include/Makefile.am: Add new <charconv> header.

View File

@ -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<typename _Tp>