@@ -154,7 +154,7 @@ inline _LIBCPP_HIDE_FROM_ABI locale::locale(const locale& __other, _Facet* __f)
154154template <class _Facet >
155155locale locale::combine (const locale& __other) const {
156156 if (!std::has_facet<_Facet>(__other))
157- __throw_runtime_error (" locale::combine: locale missing facet" );
157+ std:: __throw_runtime_error (" locale::combine: locale missing facet" );
158158
159159 return locale (*this , &const_cast <_Facet&>(std::use_facet<_Facet>(__other)));
160160}
@@ -1298,7 +1298,7 @@ struct _LIBCPP_EXPORTED_FROM_ABI __narrow_to_utf8<16> : public codecvt<char16_t,
12981298 const char16_t * __wn = (const char16_t *)__wb;
12991299 __r = do_out (__mb, (const char16_t *)__wb, (const char16_t *)__we, __wn, __buf, __buf + __sz, __bn);
13001300 if (__r == codecvt_base::error || __wn == (const char16_t *)__wb)
1301- __throw_runtime_error (" locale not supported" );
1301+ std:: __throw_runtime_error (" locale not supported" );
13021302 for (const char * __p = __buf; __p < __bn; ++__p, ++__s)
13031303 *__s = *__p;
13041304 __wb = (const _CharT*)__wn;
@@ -1326,7 +1326,7 @@ struct _LIBCPP_EXPORTED_FROM_ABI __narrow_to_utf8<32> : public codecvt<char32_t,
13261326 const char32_t * __wn = (const char32_t *)__wb;
13271327 __r = do_out (__mb, (const char32_t *)__wb, (const char32_t *)__we, __wn, __buf, __buf + __sz, __bn);
13281328 if (__r == codecvt_base::error || __wn == (const char32_t *)__wb)
1329- __throw_runtime_error (" locale not supported" );
1329+ std:: __throw_runtime_error (" locale not supported" );
13301330 for (const char * __p = __buf; __p < __bn; ++__p, ++__s)
13311331 *__s = *__p;
13321332 __wb = (const _CharT*)__wn;
@@ -1370,7 +1370,7 @@ struct _LIBCPP_EXPORTED_FROM_ABI __widen_from_utf8<16> : public codecvt<char16_t
13701370 const char * __nn = __nb;
13711371 __r = do_in (__mb, __nb, __ne - __nb > __sz ? __nb + __sz : __ne, __nn, __buf, __buf + __sz, __bn);
13721372 if (__r == codecvt_base::error || __nn == __nb)
1373- __throw_runtime_error (" locale not supported" );
1373+ std:: __throw_runtime_error (" locale not supported" );
13741374 for (const char16_t * __p = __buf; __p < __bn; ++__p, ++__s)
13751375 *__s = *__p;
13761376 __nb = __nn;
@@ -1398,7 +1398,7 @@ struct _LIBCPP_EXPORTED_FROM_ABI __widen_from_utf8<32> : public codecvt<char32_t
13981398 const char * __nn = __nb;
13991399 __r = do_in (__mb, __nb, __ne - __nb > __sz ? __nb + __sz : __ne, __nn, __buf, __buf + __sz, __bn);
14001400 if (__r == codecvt_base::error || __nn == __nb)
1401- __throw_runtime_error (" locale not supported" );
1401+ std:: __throw_runtime_error (" locale not supported" );
14021402 for (const char32_t * __p = __buf; __p < __bn; ++__p, ++__s)
14031403 *__s = *__p;
14041404 __nb = __nn;
0 commit comments