diff options
author | Sadie Powell <sadie@witchery.services> | 2022-01-03 18:52:15 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-01-04 00:17:19 +0000 |
commit | a31a7f5a6ce3f47716a9313d232c2a40955fd1e1 (patch) | |
tree | 8061f572670ccda9030955b67cdefba7df4facce /include/anope.h | |
parent | 7531e90499d4cd60b6464c692725225e85c00738 (diff) |
Use C++11 default initializers and destructors where possible.
Diffstat (limited to 'include/anope.h')
-rw-r--r-- | include/anope.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/anope.h b/include/anope.h index 96967bfb8..0ee78c540 100644 --- a/include/anope.h +++ b/include/anope.h @@ -665,7 +665,7 @@ class CoreException : public std::exception * Actually no, it does nothing. Never mind. * @throws Nothing! */ - virtual ~CoreException() throw() { } + virtual ~CoreException() throw() = default; /** Returns the reason for the exception. * The module should probably put something informative here as the user will see this upon failure. */ @@ -694,7 +694,7 @@ class ModuleException : public CoreException * Actually no, it does nothing. Never mind. * @throws Nothing! */ - virtual ~ModuleException() throw() { } + virtual ~ModuleException() throw() = default; }; class ConvertException : public CoreException @@ -702,7 +702,7 @@ class ConvertException : public CoreException public: ConvertException(const Anope::string &reason = "") : CoreException(reason) { } - virtual ~ConvertException() throw() { } + virtual ~ConvertException() throw() = default; }; /** Convert something to a string |