diff options
author | Chris Robinson <[email protected]> | 2020-04-14 11:50:59 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-04-14 11:50:59 -0700 |
commit | 6ac581635406328f50a3552aeddd0b95790594ef (patch) | |
tree | cb88fdba037090df00d8c248e80bdd37ec169017 /common/alexcpt.h | |
parent | 7f81eec1a6266f41e40eb4ec3f8933a238a5343e (diff) |
Avoid inlining some potentially costly calls
Diffstat (limited to 'common/alexcpt.h')
-rw-r--r-- | common/alexcpt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/alexcpt.h b/common/alexcpt.h index b399e8f7..5b33f092 100644 --- a/common/alexcpt.h +++ b/common/alexcpt.h @@ -17,6 +17,7 @@ class base_exception : public std::exception { protected: base_exception(ALCenum code) : mErrorCode{code} { } + virtual ~base_exception(); void setMessage(const char *msg, std::va_list args); |