diff options
author | Chris Robinson <[email protected]> | 2022-12-16 09:48:54 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-12-16 10:03:39 -0800 |
commit | 84cfef8513b88068e8ef66223d09b6c48d35caad (patch) | |
tree | 1dd3c6dfd8389e22f67fe7c5e03a145d46e5e8a8 /al/effects/effects.h | |
parent | 8b806c07d716db41e0a463d455cf1a913b933a0f (diff) |
Avoid inlining certain exception functions
Diffstat (limited to 'al/effects/effects.h')
-rw-r--r-- | al/effects/effects.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/al/effects/effects.h b/al/effects/effects.h index acfeec6a..70960a7f 100644 --- a/al/effects/effects.h +++ b/al/effects/effects.h @@ -22,6 +22,7 @@ public: [[gnu::format(printf, 3, 4)]] #endif effect_exception(ALenum code, const char *msg, ...); + ~effect_exception() override; ALenum errorCode() const noexcept { return mErrorCode; } }; |