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:
parent
5aab83d53f
commit
9a741aee62
@ -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.
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user