diff options
Diffstat (limited to 'libcxxabi/src/exception.cpp')
-rw-r--r-- | libcxxabi/src/exception.cpp | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/libcxxabi/src/exception.cpp b/libcxxabi/src/exception.cpp deleted file mode 100644 index c47a9b76266..00000000000 --- a/libcxxabi/src/exception.cpp +++ /dev/null @@ -1,41 +0,0 @@ -//===---------------------------- exception.cpp ---------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include <exception> - -#pragma GCC visibility push(default) - -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"; -} - -} // std - -#pragma GCC visibility pop |