diff options
author | heretic <[email protected]> | 2022-02-10 16:45:43 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:45:43 +0300 |
commit | 397cbe258b9e064f49c4ca575279f02f39fef76e (patch) | |
tree | a0b0eb3cca6a14e4e8ea715393637672fa651284 /contrib/libs/cxxsupp/libcxxabi/src/stdlib_exception.cpp | |
parent | 43f5a35593ebc9f6bcea619bb170394ea7ae468e (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/cxxsupp/libcxxabi/src/stdlib_exception.cpp')
-rw-r--r-- | contrib/libs/cxxsupp/libcxxabi/src/stdlib_exception.cpp | 118 |
1 files changed, 59 insertions, 59 deletions
diff --git a/contrib/libs/cxxsupp/libcxxabi/src/stdlib_exception.cpp b/contrib/libs/cxxsupp/libcxxabi/src/stdlib_exception.cpp index b1fc21f412a..e7a2c9eab97 100644 --- a/contrib/libs/cxxsupp/libcxxabi/src/stdlib_exception.cpp +++ b/contrib/libs/cxxsupp/libcxxabi/src/stdlib_exception.cpp @@ -1,70 +1,70 @@ //===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -#include <new> -#include <exception> - -namespace std -{ - -// exception - +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#include <new> +#include <exception> + +namespace std +{ + +// exception + exception::~exception() noexcept -{ -} - +{ +} + const char* exception::what() const noexcept -{ - return "std::exception"; -} - -// bad_exception - +{ + return "std::exception"; +} + +// bad_exception + bad_exception::~bad_exception() noexcept -{ -} - +{ +} + const char* bad_exception::what() const noexcept -{ - return "std::bad_exception"; -} - - -// bad_alloc - +{ + return "std::bad_exception"; +} + + +// bad_alloc + bad_alloc::bad_alloc() noexcept -{ -} - +{ +} + bad_alloc::~bad_alloc() noexcept -{ -} - -const char* +{ +} + +const char* bad_alloc::what() const noexcept -{ - return "std::bad_alloc"; -} - -// bad_array_new_length - +{ + return "std::bad_alloc"; +} + +// bad_array_new_length + bad_array_new_length::bad_array_new_length() noexcept -{ -} - +{ +} + bad_array_new_length::~bad_array_new_length() noexcept -{ -} - -const char* +{ +} + +const char* bad_array_new_length::what() const noexcept -{ - return "bad_array_new_length"; -} - -} // std +{ + return "bad_array_new_length"; +} + +} // std |