diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-08 19:39:03 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-01-08 19:39:03 +0000 |
commit | aed8d94e97d1be8b4e26ce1ffb4d0547aee8ab1d (patch) | |
tree | f4b32ab9e34cda2eead99ae084f0b02d0dab6891 /contrib/libc++/src/string.cpp | |
parent | 657db61c2068b2bcc0d930546402284e2c9c9abd (diff) | |
parent | 4a2db4d30e1653093d4d8b06e8221e2f8b723507 (diff) |
Notes
Diffstat (limited to 'contrib/libc++/src/string.cpp')
-rw-r--r-- | contrib/libc++/src/string.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/libc++/src/string.cpp b/contrib/libc++/src/string.cpp index d3f29df639f48..cd644330b3a77 100644 --- a/contrib/libc++/src/string.cpp +++ b/contrib/libc++/src/string.cpp @@ -20,10 +20,10 @@ _LIBCPP_BEGIN_NAMESPACE_STD -template class __basic_string_common<true>; +template class _LIBCPP_CLASS_TEMPLATE_INSTANTIATION_VIS __basic_string_common<true>; -template class basic_string<char>; -template class basic_string<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 @@ -40,7 +40,7 @@ void throw_helper( const string& msg ) throw T( msg ); #else fprintf(stderr, "%s\n", msg.c_str()); - abort(); + _VSTD::abort(); #endif } |