diff options
author | David Robillard <d@drobilla.net> | 2020-12-19 11:59:55 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-19 12:02:24 +0100 |
commit | 7fd45d6dab78c158b12326af4be9ae96ce416adb (patch) | |
tree | c23711eebd014958755e1c8aed981606097b0fb9 /include/raul | |
parent | 2a09c19703b242aaf693e5b52a70c1ad65332119 (diff) | |
download | raul-7fd45d6dab78c158b12326af4be9ae96ce416adb.tar.gz raul-7fd45d6dab78c158b12326af4be9ae96ce416adb.tar.bz2 raul-7fd45d6dab78c158b12326af4be9ae96ce416adb.zip |
Suppress warnings with older clang-tidy
Diffstat (limited to 'include/raul')
-rw-r--r-- | include/raul/Exception.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/raul/Exception.hpp b/include/raul/Exception.hpp index 478017d..25e1d03 100644 --- a/include/raul/Exception.hpp +++ b/include/raul/Exception.hpp @@ -26,6 +26,7 @@ namespace Raul { /** An exception (unexpected error). */ class Exception : public std::exception { public: + // NOLINTNEXTLINE(modernize-use-override, hicpp-use-override) const char* what() const noexcept final override { return _what.c_str(); } protected: |