18 lines
202 B
C++
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
|