rpcsx/rpcs3/util/cereal.cpp
2020-12-06 15:30:12 +03:00

11 lines
162 B
C++

#include <string>
#include "Utilities/Thread.h"
namespace cereal
{
[[noreturn]] void throw_exception(const std::string& err)
{
report_fatal_error(err);
}
}