diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-01-16 16:25:08 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-01-16 16:25:08 -0800 |
commit | 1cb0ec225dd97470208cc9e3b59cf35d8f4e3a0b (patch) | |
tree | 4cd531366cc90a7521d363e5561c25e9e5328b20 /system/include/libcxx/ostream | |
parent | cf5947187de4390ad0440940f323470b37befbc8 (diff) |
restore libcxx to pristine state, undoing all our hacks, and work towards fixing test_exceptions given that
Diffstat (limited to 'system/include/libcxx/ostream')
-rw-r--r-- | system/include/libcxx/ostream | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/system/include/libcxx/ostream b/system/include/libcxx/ostream index f7cbb8a2..f1a3de9c 100644 --- a/system/include/libcxx/ostream +++ b/system/include/libcxx/ostream @@ -204,7 +204,6 @@ protected: basic_ostream() {} // extension, intentially does not initialize }; -/* template <class _CharT, class _Traits> class _LIBCPP_VISIBLE basic_ostream<_CharT, _Traits>::sentry { @@ -1181,7 +1180,6 @@ basic_ostream<_CharT, _Traits>::seekp(off_type __off, ios_base::seekdir __dir) return *this; } -*/ template <class _CharT, class _Traits> inline _LIBCPP_INLINE_VISIBILITY basic_ostream<_CharT, _Traits>& @@ -1210,7 +1208,6 @@ flush(basic_ostream<_CharT, _Traits>& __os) return __os; } -/* #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES template <class _Stream, class _Tp> @@ -1287,9 +1284,9 @@ operator<<(basic_ostream<_CharT, _Traits>& __os, const bitset<_Size>& __x) (use_facet<ctype<_CharT> >(__os.getloc()).widen('0'), use_facet<ctype<_CharT> >(__os.getloc()).widen('1')); } -*/ -//extern template class basic_ostream<char>; /* XXX EMScripten */ -//extern template class basic_ostream<wchar_t>; /* XXX EMScripten */ + +extern template class basic_ostream<char>; +extern template class basic_ostream<wchar_t>; _LIBCPP_END_NAMESPACE_STD |