chore: some cleanup work on WorldServer and PerformanceManager

This commit is contained in:
David Markowitz
2025-05-02 16:33:28 -07:00
parent b31f9670d1
commit 7c8ca1c1cb
4 changed files with 160 additions and 160 deletions

View File

@@ -52,9 +52,9 @@ public:
virtual ~CppSQLite3Exception();
const int errorCode() { return mnErrCode; }
const int errorCode() const { return mnErrCode; }
const char* errorMessage() { return mpszErrMess; }
const char* errorMessage() const { return mpszErrMess; }
const char* what() const noexcept override { return mpszErrMess; }