ios_base::iostate __err = ios_base::goodbit;
__try
{
+#ifndef _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT
const __num_get_type& __ng = __check_facet(this->_M_num_get);
+#else
+ const __num_get_type& __ng
+ = use_facet<__num_get_type>(this->_M_ios_locale);
+#endif
__ng.get(*this, 0, *this, __err, __v);
}
__catch(__cxxabiv1::__forced_unwind&)
__try
{
long __l;
+#ifndef _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT
const __num_get_type& __ng = __check_facet(this->_M_num_get);
+#else
+ const __num_get_type& __ng
+ = use_facet<__num_get_type>(this->_M_ios_locale);
+#endif
__ng.get(*this, 0, *this, __err, __l);
// _GLIBCXX_RESOLVE_LIB_DEFECTS
__try
{
long __l;
+#ifndef _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT
const __num_get_type& __ng = __check_facet(this->_M_num_get);
+#else
+ const __num_get_type& __ng
+ = use_facet<__num_get_type>(this->_M_ios_locale);
+#endif
__ng.get(*this, 0, *this, __err, __l);
// _GLIBCXX_RESOLVE_LIB_DEFECTS
ios_base::iostate __err = ios_base::goodbit;
__try
{
+#ifndef _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT
const __num_put_type& __np = __check_facet(this->_M_num_put);
+#else
+ const __num_put_type& __np
+ = use_facet<__num_put_type>(this->_M_ios_locale);
+#endif
if (__np.put(*this, *this, this->fill(), __v).failed())
__err |= ios_base::badbit;
}