diff options
author | Adam <adam@sigterm.info> | 2017-03-20 08:06:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-20 08:06:32 -0400 |
commit | 466ba4100ae8f18470fdf8f1b3def5aa5f9a5cbb (patch) | |
tree | 7156ccd4a7136cb7076dd6e22602fb7dc32267b0 /include/base.h | |
parent | 032077534232a4fa97736595bdfcfe3c8b9beb58 (diff) | |
parent | 756c89cfccb4039bf5b4b59662a0bd7c379287a3 (diff) |
Merge pull request #1308 from SaberUK/insp20+warnings
[2.0] Fix some compiler warnings.
Diffstat (limited to 'include/base.h')
-rw-r--r-- | include/base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/base.h b/include/base.h index 0a4456f3a..19222a6f5 100644 --- a/include/base.h +++ b/include/base.h @@ -201,7 +201,7 @@ class CoreExport CoreException : public std::exception * Actually no, it does nothing. Never mind. * @throws Nothing! */ - virtual ~CoreException() throw() {}; + virtual ~CoreException() throw() {} /** Returns the reason for the exception. * The module should probably put something informative here as the user will see this upon failure. */ |