Re-export two previously exported std::string functions.

These functions were removed from the dylib sometime between the 3.9 release
and now. This patch manually exports them to re-gain ABI compatibility.


git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@284193 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier
2016-10-14 04:14:24 +00:00
parent 977cd9f231
commit c3d49c930b
2 changed files with 25 additions and 20 deletions

View File

@@ -25,6 +25,9 @@ template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS __basic_string_common<tr
template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_string<char>;
template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_string<wchar_t>;
template void string::__init(const char*, const char*);
template void wstring::__init(const wchar_t*, const wchar_t*);
template
string
operator+<char, char_traits<char>, allocator<char> >(char const*, string const&);