bad_apple_os/bastl/src/exception.cpp

18 lines
202 B
C++

#include <exception>
namespace std
{
const char* exception::what() const noexcept
{
return "";
}
}
#if !defined(__cpp_exceptions)
namespace ba::impl
{
ExceptionAbortHelper gAbortHelper;
}
#endif