aboutsummaryrefslogtreecommitdiffstats
path: root/core/except.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-01-13 02:09:54 -0800
committerChris Robinson <[email protected]>2023-01-13 02:09:54 -0800
commit4bf946136967f309459ae5c9e3e0d162fc977c3e (patch)
treeb2bcb74f534ffd6c49b8258c2422faec1166feca /core/except.h
parentc67064b95830af40c04fe5a626c16bb5e05ed1a5 (diff)
Avoid inlining the base_exception destructor
Diffstat (limited to 'core/except.h')
-rw-r--r--core/except.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/except.h b/core/except.h
index af7257bf..0e28e9df 100644
--- a/core/except.h
+++ b/core/except.h
@@ -14,7 +14,7 @@ class base_exception : public std::exception {
protected:
base_exception() = default;
- virtual ~base_exception() = default;
+ virtual ~base_exception();
void setMessage(const char *msg, std::va_list args);