Correct limits_test.cpp for C++20.

This commit is contained in:
jzmaddock
2021-01-05 18:47:17 +00:00
parent 710c32360b
commit 1bb7ec6de0

View File

@ -52,6 +52,7 @@ template<typename T> inline T make_char_numeric_for_streaming(T x) { return x; }
inline int make_char_numeric_for_streaming(char c) { return c; }
inline int make_char_numeric_for_streaming(signed char c) { return c; }
inline int make_char_numeric_for_streaming(unsigned char c) { return c; }
inline int make_char_numeric_for_streaming(wchar_t c) { return c; }
#endif
#if (defined(_GLIBCPP_VERSION) || defined(_GLIBCXX_VERSION)) \