@@ -153,7 +153,7 @@ inline _LIBCPP_HIDE_FROM_ABI locale::locale(const locale& __other, _Facet* __f)
153153template <class _Facet >
154154locale locale::combine (const locale& __other) const {
155155 if (!std::has_facet<_Facet>(__other))
156- __throw_runtime_error (" locale::combine: locale missing facet" );
156+ std:: __throw_runtime_error (" locale::combine: locale missing facet" );
157157
158158 return locale (*this , &const_cast <_Facet&>(std::use_facet<_Facet>(__other)));
159159}
@@ -1297,7 +1297,7 @@ struct _LIBCPP_EXPORTED_FROM_ABI __narrow_to_utf8<16> : public codecvt<char16_t,
12971297 const char16_t * __wn = (const char16_t *)__wb;
12981298 __r = do_out (__mb, (const char16_t *)__wb, (const char16_t *)__we, __wn, __buf, __buf + __sz, __bn);
12991299 if (__r == codecvt_base::error || __wn == (const char16_t *)__wb)
1300- __throw_runtime_error (" locale not supported" );
1300+ std:: __throw_runtime_error (" locale not supported" );
13011301 for (const char * __p = __buf; __p < __bn; ++__p, ++__s)
13021302 *__s = *__p;
13031303 __wb = (const _CharT*)__wn;
@@ -1325,7 +1325,7 @@ struct _LIBCPP_EXPORTED_FROM_ABI __narrow_to_utf8<32> : public codecvt<char32_t,
13251325 const char32_t * __wn = (const char32_t *)__wb;
13261326 __r = do_out (__mb, (const char32_t *)__wb, (const char32_t *)__we, __wn, __buf, __buf + __sz, __bn);
13271327 if (__r == codecvt_base::error || __wn == (const char32_t *)__wb)
1328- __throw_runtime_error (" locale not supported" );
1328+ std:: __throw_runtime_error (" locale not supported" );
13291329 for (const char * __p = __buf; __p < __bn; ++__p, ++__s)
13301330 *__s = *__p;
13311331 __wb = (const _CharT*)__wn;
@@ -1369,7 +1369,7 @@ struct _LIBCPP_EXPORTED_FROM_ABI __widen_from_utf8<16> : public codecvt<char16_t
13691369 const char * __nn = __nb;
13701370 __r = do_in (__mb, __nb, __ne - __nb > __sz ? __nb + __sz : __ne, __nn, __buf, __buf + __sz, __bn);
13711371 if (__r == codecvt_base::error || __nn == __nb)
1372- __throw_runtime_error (" locale not supported" );
1372+ std:: __throw_runtime_error (" locale not supported" );
13731373 for (const char16_t * __p = __buf; __p < __bn; ++__p, ++__s)
13741374 *__s = *__p;
13751375 __nb = __nn;
@@ -1397,7 +1397,7 @@ struct _LIBCPP_EXPORTED_FROM_ABI __widen_from_utf8<32> : public codecvt<char32_t
13971397 const char * __nn = __nb;
13981398 __r = do_in (__mb, __nb, __ne - __nb > __sz ? __nb + __sz : __ne, __nn, __buf, __buf + __sz, __bn);
13991399 if (__r == codecvt_base::error || __nn == __nb)
1400- __throw_runtime_error (" locale not supported" );
1400+ std:: __throw_runtime_error (" locale not supported" );
14011401 for (const char32_t * __p = __buf; __p < __bn; ++__p, ++__s)
14021402 *__s = *__p;
14031403 __nb = __nn;
0 commit comments