1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
16 type_info::~type_info()
22 bad_cast::bad_cast() noexcept
26 bad_cast::~bad_cast() noexcept
31 bad_cast::what() const noexcept
33 return "std::bad_cast";
38 bad_typeid::bad_typeid() noexcept
42 bad_typeid::~bad_typeid() noexcept
47 bad_typeid::what() const noexcept
49 return "std::bad_typeid";