summaryrefslogtreecommitdiffstats
path: root/contrib/libs/cxxsupp/libcxxrt/stdexcept.cc
diff options
context:
space:
mode:
authoreeight <[email protected]>2022-02-10 16:46:19 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:19 +0300
commitbd085aee9b4f7a0bee302ce687964ffb7098f986 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/libs/cxxsupp/libcxxrt/stdexcept.cc
parent475c0a46f28166e83fd263badc7546377cddcabe (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/cxxsupp/libcxxrt/stdexcept.cc')
-rw-r--r--contrib/libs/cxxsupp/libcxxrt/stdexcept.cc48
1 files changed, 24 insertions, 24 deletions
diff --git a/contrib/libs/cxxsupp/libcxxrt/stdexcept.cc b/contrib/libs/cxxsupp/libcxxrt/stdexcept.cc
index 964c4adb442..07c62a731b8 100644
--- a/contrib/libs/cxxsupp/libcxxrt/stdexcept.cc
+++ b/contrib/libs/cxxsupp/libcxxrt/stdexcept.cc
@@ -31,66 +31,66 @@
namespace std {
-exception::exception() noexcept {}
-exception::~exception() {}
-exception::exception(const exception&) noexcept {}
-exception& exception::operator=(const exception&) noexcept
+exception::exception() noexcept {}
+exception::~exception() {}
+exception::exception(const exception&) noexcept {}
+exception& exception::operator=(const exception&) noexcept
{
return *this;
}
-const char* exception::what() const noexcept
+const char* exception::what() const noexcept
{
return "std::exception";
}
-bad_alloc::bad_alloc() noexcept {}
-bad_alloc::~bad_alloc() {}
-bad_alloc::bad_alloc(const bad_alloc&) noexcept {}
-bad_alloc& bad_alloc::operator=(const bad_alloc&) noexcept
+bad_alloc::bad_alloc() noexcept {}
+bad_alloc::~bad_alloc() {}
+bad_alloc::bad_alloc(const bad_alloc&) noexcept {}
+bad_alloc& bad_alloc::operator=(const bad_alloc&) noexcept
{
return *this;
}
-const char* bad_alloc::what() const noexcept
+const char* bad_alloc::what() const noexcept
{
return "cxxrt::bad_alloc";
}
-bad_cast::bad_cast() noexcept {}
-bad_cast::~bad_cast() {}
-bad_cast::bad_cast(const bad_cast&) noexcept {}
-bad_cast& bad_cast::operator=(const bad_cast&) noexcept
+bad_cast::bad_cast() noexcept {}
+bad_cast::~bad_cast() {}
+bad_cast::bad_cast(const bad_cast&) noexcept {}
+bad_cast& bad_cast::operator=(const bad_cast&) noexcept
{
return *this;
}
-const char* bad_cast::what() const noexcept
+const char* bad_cast::what() const noexcept
{
return "std::bad_cast";
}
-bad_typeid::bad_typeid() noexcept {}
-bad_typeid::~bad_typeid() {}
-bad_typeid::bad_typeid(const bad_typeid &__rhs) noexcept {}
-bad_typeid& bad_typeid::operator=(const bad_typeid &__rhs) noexcept
+bad_typeid::bad_typeid() noexcept {}
+bad_typeid::~bad_typeid() {}
+bad_typeid::bad_typeid(const bad_typeid &__rhs) noexcept {}
+bad_typeid& bad_typeid::operator=(const bad_typeid &__rhs) noexcept
{
return *this;
}
-const char* bad_typeid::what() const noexcept
+const char* bad_typeid::what() const noexcept
{
return "std::bad_typeid";
}
-bad_array_new_length::bad_array_new_length() noexcept {}
+bad_array_new_length::bad_array_new_length() noexcept {}
bad_array_new_length::~bad_array_new_length() {}
-bad_array_new_length::bad_array_new_length(const bad_array_new_length&) noexcept {}
-bad_array_new_length& bad_array_new_length::operator=(const bad_array_new_length&) noexcept
+bad_array_new_length::bad_array_new_length(const bad_array_new_length&) noexcept {}
+bad_array_new_length& bad_array_new_length::operator=(const bad_array_new_length&) noexcept
{
return *this;
}
-const char* bad_array_new_length::what() const noexcept
+const char* bad_array_new_length::what() const noexcept
{
return "std::bad_array_new_length";
}