Index: include/bits/basic_string.h =================================================================== --- include/bits/basic_string.h (revision 203899) +++ include/bits/basic_string.h (working copy) @@ -3130,22 +3130,22 @@ { inline basic_string - operator"" s(const char* __str, size_t __len) + operator""s(const char* __str, size_t __len) { return basic_string{__str, __len}; } #ifdef _GLIBCXX_USE_WCHAR_T inline basic_string - operator"" s(const wchar_t* __str, size_t __len) + operator""s(const wchar_t* __str, size_t __len) { return basic_string{__str, __len}; } #endif #ifdef _GLIBCXX_USE_C99_STDINT_TR1 inline basic_string - operator"" s(const char16_t* __str, size_t __len) + operator""s(const char16_t* __str, size_t __len) { return basic_string{__str, __len}; } inline basic_string - operator"" s(const char32_t* __str, size_t __len) + operator""s(const char32_t* __str, size_t __len) { return basic_string{__str, __len}; } #endif Index: include/std/chrono =================================================================== --- include/std/chrono (revision 203899) +++ include/std/chrono (working copy) @@ -810,14 +810,14 @@ } // __select_type constexpr chrono::duration> - operator"" h(long double __hours) + operator""h(long double __hours) { return chrono::duration>{__hours}; } template constexpr typename __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::hours>::type - operator"" h() + operator""h() { return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value, @@ -825,14 +825,14 @@ } constexpr chrono::duration> - operator"" min(long double __mins) + operator""min(long double __mins) { return chrono::duration>{__mins}; } template constexpr typename __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::minutes>::type - operator"" min() + operator""min() { return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value, @@ -840,14 +840,14 @@ } constexpr chrono::duration - operator"" s(long double __secs) + operator""s(long double __secs) { return chrono::duration{__secs}; } template constexpr typename __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::seconds>::type - operator"" s() + operator""s() { return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value, @@ -855,14 +855,14 @@ } constexpr chrono::duration - operator"" ms(long double __msecs) + operator""ms(long double __msecs) { return chrono::duration{__msecs}; } template constexpr typename __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::milliseconds>::type - operator"" ms() + operator""ms() { return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value, @@ -870,14 +870,14 @@ } constexpr chrono::duration - operator"" us(long double __usecs) + operator""us(long double __usecs) { return chrono::duration{__usecs}; } template constexpr typename __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::microseconds>::type - operator"" us() + operator""us() { return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value, @@ -885,14 +885,14 @@ } constexpr chrono::duration - operator"" ns(long double __nsecs) + operator""ns(long double __nsecs) { return chrono::duration{__nsecs}; } template constexpr typename __select_type::_Select_type<__select_int::_Select_int<_Digits...>::value, chrono::nanoseconds>::type - operator"" ns() + operator""ns() { return __select_type::_Select_type< __select_int::_Select_int<_Digits...>::value,