diff options
Diffstat (limited to 'libcxx/src/any.cpp')
-rw-r--r-- | libcxx/src/any.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcxx/src/any.cpp b/libcxx/src/any.cpp index eaca2dd..8f7e884 100644 --- a/libcxx/src/any.cpp +++ b/libcxx/src/any.cpp @@ -17,6 +17,7 @@ const char* bad_any_cast::what() const noexcept { return "bad any cast"; } // Preserve std::experimental::any_bad_cast for ABI compatibility // Even though it no longer exists in a header file _LIBCPP_BEGIN_NAMESPACE_LFTS +_LIBCPP_BEGIN_EXPLICIT_ABI_ANNOTATIONS class _LIBCPP_EXPORTED_FROM_ABI _LIBCPP_AVAILABILITY_BAD_ANY_CAST bad_any_cast : public bad_cast { public: @@ -25,4 +26,5 @@ public: const char* bad_any_cast::what() const noexcept { return "bad any cast"; } +_LIBCPP_END_EXPLICIT_ABI_ANNOTATIONS _LIBCPP_END_NAMESPACE_LFTS |