Removes unused function

This commit is contained in:
Deukhoofd 2021-11-21 12:33:34 +01:00
parent 52130fa8a5
commit dbe3923cc4
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 0 additions and 8 deletions

View File

@ -7,12 +7,4 @@ namespace ArbUt {
error << exp << "\"";
return Exception(error.str());
}
ArbUt::Exception __ErrorHelpers::CreateThrowError(const char* exp, const std::source_location& location) {
std::stringstream error;
error << "[" << file_name(location.file_name()) << ":" << location.line() << "] \"";
error << exp;
error << "\"";
return Exception(error.str());
}
}