aboutsummaryrefslogtreecommitdiff
path: root/system/include/libcxx
diff options
context:
space:
mode:
authorBenoitT <benoit.tremblay@frimastudio.com>2011-10-28 15:49:12 -0300
committerBenoitT <benoit.tremblay@frimastudio.com>2011-10-28 15:49:12 -0300
commit16dfb2f007aa7e9f0817ab74885ddf1597c9c442 (patch)
treef672bff0eb1b68c2d4c5d42e3aa28a86f1e50138 /system/include/libcxx
parent0653348f6869deaa9cb142f4271eeddf52b3357c (diff)
Fixed same bug as #105 for streambuf
Diffstat (limited to 'system/include/libcxx')
-rw-r--r--system/include/libcxx/streambuf8
1 files changed, 4 insertions, 4 deletions
diff --git a/system/include/libcxx/streambuf b/system/include/libcxx/streambuf
index feb62c7e..f992c578 100644
--- a/system/include/libcxx/streambuf
+++ b/system/include/libcxx/streambuf
@@ -551,11 +551,11 @@ basic_streambuf<_CharT, _Traits>::overflow(int_type __c)
return traits_type::eof();
}
-extern template class basic_streambuf<char>;
-extern template class basic_streambuf<wchar_t>;
+//extern template class basic_streambuf<char>; /* XXX EMScripten */
+//extern template class basic_streambuf<wchar_t>; /* XXX EMScripten */
-extern template class basic_ios<char>;
-extern template class basic_ios<wchar_t>;
+//extern template class basic_ios<char>; /* XXX EMScripten */
+//extern template class basic_ios<wchar_t>; /* XXX EMScripten */
_LIBCPP_END_NAMESPACE_STD