diff options
author | Oliver Stannard <oliver.stannard@linaro.org> | 2020-01-13 13:54:04 +0000 |
---|---|---|
committer | Oliver Stannard <oliver.stannard@linaro.org> | 2020-01-13 13:54:04 +0000 |
commit | 6a634a5dba847e1c1d81bf59f76dfa7d76ac3c4c (patch) | |
tree | eaabe92d306f538b832aa765058cf57220482c2d /libcxx/src/string.cpp | |
parent | 04a86966fbf46809d7a165b1f089e4d076f0f8a5 (diff) | |
download | llvm-6a634a5dba847e1c1d81bf59f76dfa7d76ac3c4c.zip llvm-6a634a5dba847e1c1d81bf59f76dfa7d76ac3c4c.tar.gz llvm-6a634a5dba847e1c1d81bf59f76dfa7d76ac3c4c.tar.bz2 |
Revert "[libc++] Explicitly enumerate std::string external instantiations."
This is causing failures for multiple buildbots and bootstrap builds,
details at https://reviews.llvm.org/rG61bd1920.
This reverts commit 61bd19206f61ace4b007838a2ff8884a13ec0374.
Diffstat (limited to 'libcxx/src/string.cpp')
-rw-r--r-- | libcxx/src/string.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/src/string.cpp b/libcxx/src/string.cpp index 1e98c68..4802d63 100644 --- a/libcxx/src/string.cpp +++ b/libcxx/src/string.cpp @@ -20,8 +20,8 @@ _LIBCPP_BEGIN_NAMESPACE_STD template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS __basic_string_common<true>; -_LIBCPP_STRING_EXTERN_TEMPLATE_LIST(_LIBCPP_EXTERN_TEMPLATE_DEFINE, char) -_LIBCPP_STRING_EXTERN_TEMPLATE_LIST(_LIBCPP_EXTERN_TEMPLATE_DEFINE, wchar_t) +template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_string<char>; +template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS basic_string<wchar_t>; template string |