From 84cfef8513b88068e8ef66223d09b6c48d35caad Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Fri, 16 Dec 2022 09:48:54 -0800 Subject: Avoid inlining certain exception functions --- core/except.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/except.h') 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); -- cgit v1.2.3