diff options
author | David Robillard <d@drobilla.net> | 2020-12-14 14:28:23 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-14 14:28:23 +0100 |
commit | 57602cd13969d72cfae284bccdeee1ac6bf15c1e (patch) | |
tree | 64e9583543f915171d15c072ecaa3b2658cf646e /include | |
parent | ff128069c052e28256094837eff5e6a12136bdd1 (diff) | |
download | raul-57602cd13969d72cfae284bccdeee1ac6bf15c1e.tar.gz raul-57602cd13969d72cfae284bccdeee1ac6bf15c1e.tar.bz2 raul-57602cd13969d72cfae284bccdeee1ac6bf15c1e.zip |
Remove redundant override specifier
Diffstat (limited to 'include')
-rw-r--r-- | include/raul/Exception.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/raul/Exception.hpp b/include/raul/Exception.hpp index 478017d..0e8d3ba 100644 --- a/include/raul/Exception.hpp +++ b/include/raul/Exception.hpp @@ -26,7 +26,7 @@ namespace Raul { /** An exception (unexpected error). */ class Exception : public std::exception { public: - const char* what() const noexcept final override { return _what.c_str(); } + const char* what() const noexcept final { return _what.c_str(); } protected: explicit Exception(std::string what) : _what(std::move(what)) {} |