comparison libcxx/src/any.cpp @ 252:1f2b6ac9f198 llvm-original

LLVM16-1
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Fri, 18 Aug 2023 09:04:13 +0900
parents c4bab56944e8
children
comparison
equal deleted inserted replaced
237:c80f45b162ad 252:1f2b6ac9f198
19 19
20 // Preserve std::experimental::any_bad_cast for ABI compatibility 20 // Preserve std::experimental::any_bad_cast for ABI compatibility
21 // Even though it no longer exists in a header file 21 // Even though it no longer exists in a header file
22 _LIBCPP_BEGIN_NAMESPACE_LFTS 22 _LIBCPP_BEGIN_NAMESPACE_LFTS
23 23
24 class _LIBCPP_EXCEPTION_ABI _LIBCPP_AVAILABILITY_BAD_ANY_CAST bad_any_cast : public bad_cast 24 class _LIBCPP_EXPORTED_FROM_ABI _LIBCPP_AVAILABILITY_BAD_ANY_CAST bad_any_cast : public bad_cast
25 { 25 {
26 public: 26 public:
27 virtual const char* what() const noexcept; 27 virtual const char* what() const noexcept;
28 }; 28 };
29 29