aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/except.cpp3
-rw-r--r--core/except.h2
2 files changed, 1 insertions, 4 deletions
diff --git a/core/except.cpp b/core/except.cpp
index a77c7730..5405a8fe 100644
--- a/core/except.cpp
+++ b/core/except.cpp
@@ -11,9 +11,6 @@
namespace al {
-/* Defined here to avoid inlining it. */
-base_exception::~base_exception() = default;
-
void base_exception::setMessage(const char* msg, std::va_list args)
{
std::va_list args2;
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);