diff options
Diffstat (limited to 'core/except.h')
-rw-r--r-- | core/except.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/except.h b/core/except.h index 0e28e9df..af7257bf 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(); + virtual ~base_exception() = default; void setMessage(const char *msg, std::va_list args); |