1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
18 _LIBCPP_BEGIN_NAMESPACE_STD
20 // Original explicit instantiations provided in the library
21 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ios
<char>;
22 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_streambuf
<char>;
23 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_istream
<char>;
24 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostream
<char>;
25 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_iostream
<char>;
27 #ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
28 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ios
<wchar_t>;
29 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_streambuf
<wchar_t>;
30 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_istream
<wchar_t>;
31 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostream
<wchar_t>;
34 // Additional instantiations added later. Whether programs rely on these being
35 // available is protected by _LIBCPP_ABI_ENABLE_ADDITIONAL_IOSTREAM_EXPLICIT_INSTANTIATIONS_1.
36 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_stringbuf
<char>;
37 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_stringstream
<char>;
38 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostringstream
<char>;
39 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_istringstream
<char>;
40 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ifstream
<char>;
41 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ofstream
<char>;
42 template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_filebuf
<char>;
44 // Add more here if needed...
46 _LIBCPP_END_NAMESPACE_STD