diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2023-01-13 02:09:54 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2023-01-13 02:09:54 -0800 |
commit | 4bf946136967f309459ae5c9e3e0d162fc977c3e (patch) | |
tree | b2bcb74f534ffd6c49b8258c2422faec1166feca /core/except.cpp | |
parent | c67064b95830af40c04fe5a626c16bb5e05ed1a5 (diff) |
Avoid inlining the base_exception destructor
Diffstat (limited to 'core/except.cpp')
-rw-r--r-- | core/except.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/except.cpp b/core/except.cpp index 5405a8fe..f3d80d59 100644 --- a/core/except.cpp +++ b/core/except.cpp @@ -11,6 +11,8 @@ namespace al { +base_exception::~base_exception() = default; + void base_exception::setMessage(const char* msg, std::va_list args) { std::va_list args2; |