Commit 9a741aee by Jakub Jelinek Committed by Jakub Jelinek

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
parent 5aab83d5
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> 2017-10-02 Jonathan Wakely <jwakely@redhat.com>
* include/Makefile.am: Add new <charconv> header. * include/Makefile.am: Add new <charconv> header.
......
...@@ -81,7 +81,11 @@ namespace __detail ...@@ -81,7 +81,11 @@ namespace __detail
#if _GLIBCXX_USE_INT128 #if _GLIBCXX_USE_INT128
conditional_t<(sizeof(_Tp) <= sizeof(__int128)), unsigned __int128, conditional_t<(sizeof(_Tp) <= sizeof(__int128)), unsigned __int128,
#endif #endif
void>>>>; void
#if _GLIBCXX_USE_INT128
>
#endif
>>>;
// Generic implementation for arbitrary bases. // Generic implementation for arbitrary bases.
template<typename _Tp> template<typename _Tp>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment