//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include <__config> #include #include #include #include #include #include _LIBCPP_BEGIN_NAMESPACE_STD // Original explicit instantiations provided in the library template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ios; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_streambuf; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_istream; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostream; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_iostream; #ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ios; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_streambuf; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_istream; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostream; #endif // Additional instantiations added later. Whether programs rely on these being // available is protected by _LIBCPP_ABI_ENABLE_ADDITIONAL_IOSTREAM_EXPLICIT_INSTANTIATIONS_1. template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_stringbuf; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_stringstream; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ostringstream; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_istringstream; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ifstream; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_ofstream; template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_filebuf; // Add more here if needed... _LIBCPP_END_NAMESPACE_STD