aboutsummaryrefslogtreecommitdiff
path: root/system/include/libcxx
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-10-31 20:07:34 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-10-31 20:07:34 -0700
commitcc8b65b0bea65ea6db9e175268c5196e42e10991 (patch)
tree322c9307b0e5fb4d22c59ebe7327c9079c641ed8 /system/include/libcxx
parentbfb59dac1491e901b2181c9a2db8d183d61c06e7 (diff)
parentc67ace980cbfc40e592ea2628f75a408c482e373 (diff)
Merge pull request #107 from BenoitT/patch-1
std::endl was missing. We just need to comment extern to make std::cout w
Diffstat (limited to 'system/include/libcxx')
-rw-r--r--system/include/libcxx/ostream6
1 files changed, 2 insertions, 4 deletions
diff --git a/system/include/libcxx/ostream b/system/include/libcxx/ostream
index c70f3c15..c7d294e2 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
{
@@ -1286,9 +1285,8 @@ operator<<(basic_ostream<_CharT, _Traits>& __os, const bitset<_Size>& __x)
use_facet<ctype<_CharT> >(__os.getloc()).widen('1'));
}
-extern template class basic_ostream<char>;
-extern template class basic_ostream<wchar_t>;
-*/
+//extern template class basic_ostream<char>; /* XXX EMScripten */
+//extern template class basic_ostream<wchar_t>; /* XXX EMScripten */
_LIBCPP_END_NAMESPACE_STD