[ox/std] Cleanup

This commit is contained in:
Gary Talent 2023-04-02 09:42:49 -05:00
parent b8c0bbe03a
commit 9af8530e24

View File

@ -101,7 +101,7 @@ struct Exception: public std::exception {
this->errCode = errCode;
}
inline explicit Exception(const Error &err) {
explicit inline Exception(const Error &err) {
if (err.msg) {
this->msg = err.msg;
} else {