summaryrefslogtreecommitdiff
path: root/r23/sources/cxx-stl/llvm-libc++abi/src/stdlib_exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'r23/sources/cxx-stl/llvm-libc++abi/src/stdlib_exception.cpp')
-rw-r--r--r23/sources/cxx-stl/llvm-libc++abi/src/stdlib_exception.cpp71
1 files changed, 0 insertions, 71 deletions
diff --git a/r23/sources/cxx-stl/llvm-libc++abi/src/stdlib_exception.cpp b/r23/sources/cxx-stl/llvm-libc++abi/src/stdlib_exception.cpp
deleted file mode 100644
index 88d911d96..000000000
--- a/r23/sources/cxx-stl/llvm-libc++abi/src/stdlib_exception.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-//===---------------------------- exception.cpp ---------------------------===//
-//
-// 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
-//
-//===----------------------------------------------------------------------===//
-
-#define _LIBCPP_BUILDING_LIBRARY
-#include <new>
-#include <exception>
-
-namespace std
-{
-
-// exception
-
-exception::~exception() _NOEXCEPT
-{
-}
-
-const char* exception::what() const _NOEXCEPT
-{
- return "std::exception";
-}
-
-// bad_exception
-
-bad_exception::~bad_exception() _NOEXCEPT
-{
-}
-
-const char* bad_exception::what() const _NOEXCEPT
-{
- return "std::bad_exception";
-}
-
-
-// bad_alloc
-
-bad_alloc::bad_alloc() _NOEXCEPT
-{
-}
-
-bad_alloc::~bad_alloc() _NOEXCEPT
-{
-}
-
-const char*
-bad_alloc::what() const _NOEXCEPT
-{
- 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*
-bad_array_new_length::what() const _NOEXCEPT
-{
- return "bad_array_new_length";
-}
-
-} // std