From e77533b50c0f07666a8320151e158fd0a8262d82 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 2 Apr 2023 09:42:49 -0500 Subject: [PATCH] [ox/std] Cleanup (synced from 9af8530e248ccd93030414a7a3cc02249ae4017d) --- src/ox/std/error.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ox/std/error.hpp b/src/ox/std/error.hpp index f039426dc..12d217ed9 100644 --- a/src/ox/std/error.hpp +++ b/src/ox/std/error.hpp @@ -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 {