diff options
author | Chris Robinson <[email protected]> | 2022-12-15 16:24:01 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-12-15 16:24:01 -0800 |
commit | fcf4e6005194e4ee61ce8215f7fe18cc528eea0a (patch) | |
tree | 245ccb23c90936f5b8ecd75dc46c4f20a8667f06 /core/except.cpp | |
parent | c40e1bc1ce4f43fed87508374679f82ed237d79d (diff) |
Define a destructor as default instead of empty
Diffstat (limited to 'core/except.cpp')
-rw-r--r-- | core/except.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/except.cpp b/core/except.cpp index 8e3536bd..a77c7730 100644 --- a/core/except.cpp +++ b/core/except.cpp @@ -12,7 +12,7 @@ namespace al { /* Defined here to avoid inlining it. */ -base_exception::~base_exception() { } +base_exception::~base_exception() = default; void base_exception::setMessage(const char* msg, std::va_list args) { |