rpcsx/rpcs3/util/cereal.cpp
Nekotekina 36c8654fb8 Remove HERE macro
Some cleanup.
Add location to some functions.
2020-12-10 12:30:22 +03:00

11 lines
170 B
C++

#include <string>
#include "Utilities/StrFmt.h"
namespace cereal
{
[[noreturn]] void throw_exception(const std::string& err)
{
fmt::throw_exception("%s", err);
}
}