X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc%2B%2B.so_src%2Finclude_exp%2Fexception;h=9e1469d0c88f2675db39ff67fafe1a1389246149;hb=0f68a84d600ae8c88e444552c07f04b0dbd67003;hp=63e35bdea7813e2d4c7264593dacc21dc8f26a0b;hpb=7230e51393cb7dbd64c48fbd3520c560fe87064c;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libc++.so_src/include_exp/exception b/Usermode/Libraries/libc++.so_src/include_exp/exception index 63e35bde..9e1469d0 100644 --- a/Usermode/Libraries/libc++.so_src/include_exp/exception +++ b/Usermode/Libraries/libc++.so_src/include_exp/exception @@ -10,21 +10,16 @@ #define noexcept throw() -#include "string" - namespace std { class exception { - string m_what_str; public: exception() noexcept; exception(const exception& e) noexcept; exception& operator= (const exception& e) noexcept; virtual ~exception() noexcept; virtual const char* what() const noexcept; -protected: - exception(const string& what_str) noexcept; }; class bad_exception: @@ -32,6 +27,7 @@ class bad_exception: { public: bad_exception() noexcept; + const char* what() const noexcept; }; typedef void (*terminate_handler)();