#include <new>
#include <exception>
namespace std
{
exception::~exception() noexcept
{ … }
const char* exception::what() const noexcept
{ … }
bad_exception::~bad_exception() noexcept
{ … }
const char* bad_exception::what() const noexcept
{ … }
bad_alloc::bad_alloc() noexcept
{ … }
bad_alloc::~bad_alloc() noexcept
{ … }
const char*
bad_alloc::what() const noexcept
{ … }
bad_array_new_length::bad_array_new_length() noexcept
{ … }
bad_array_new_length::~bad_array_new_length() noexcept
{ … }
const char*
bad_array_new_length::what() const noexcept
{ … }
}