diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-02-10 16:45:12 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:12 +0300 |
commit | 49116032d905455a7b1c994e4a696afc885c1e71 (patch) | |
tree | be835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/libs/cxxsupp/libcxxabi/src/stdlib_stdexcept.cpp | |
parent | 4e839db24a3bbc9f1c610c43d6faaaa99824dcca (diff) | |
download | ydb-49116032d905455a7b1c994e4a696afc885c1e71.tar.gz |
Restoring authorship annotation for <thegeorg@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/cxxsupp/libcxxabi/src/stdlib_stdexcept.cpp')
-rw-r--r-- | contrib/libs/cxxsupp/libcxxabi/src/stdlib_stdexcept.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/contrib/libs/cxxsupp/libcxxabi/src/stdlib_stdexcept.cpp b/contrib/libs/cxxsupp/libcxxabi/src/stdlib_stdexcept.cpp index 8f6fb7bc2b..92f7a6e076 100644 --- a/contrib/libs/cxxsupp/libcxxabi/src/stdlib_stdexcept.cpp +++ b/contrib/libs/cxxsupp/libcxxabi/src/stdlib_stdexcept.cpp @@ -19,29 +19,29 @@ static_assert(sizeof(std::__libcpp_refstring) == sizeof(const char *), ""); namespace std // purposefully not using versioning namespace { -logic_error::~logic_error() noexcept {} +logic_error::~logic_error() noexcept {} const char* -logic_error::what() const noexcept +logic_error::what() const noexcept { return __imp_.c_str(); } -runtime_error::~runtime_error() noexcept {} +runtime_error::~runtime_error() noexcept {} const char* -runtime_error::what() const noexcept +runtime_error::what() const noexcept { return __imp_.c_str(); } -domain_error::~domain_error() noexcept {} -invalid_argument::~invalid_argument() noexcept {} -length_error::~length_error() noexcept {} -out_of_range::~out_of_range() noexcept {} +domain_error::~domain_error() noexcept {} +invalid_argument::~invalid_argument() noexcept {} +length_error::~length_error() noexcept {} +out_of_range::~out_of_range() noexcept {} -range_error::~range_error() noexcept {} -overflow_error::~overflow_error() noexcept {} -underflow_error::~underflow_error() noexcept {} +range_error::~range_error() noexcept {} +overflow_error::~overflow_error() noexcept {} +underflow_error::~underflow_error() noexcept {} } // std |