summaryrefslogtreecommitdiffstats
path: root/include/raul/Exception.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-19 11:59:55 +0100
committerDavid Robillard <d@drobilla.net>2020-12-19 12:02:24 +0100
commit7fd45d6dab78c158b12326af4be9ae96ce416adb (patch)
treec23711eebd014958755e1c8aed981606097b0fb9 /include/raul/Exception.hpp
parent2a09c19703b242aaf693e5b52a70c1ad65332119 (diff)
downloadraul-7fd45d6dab78c158b12326af4be9ae96ce416adb.tar.gz
raul-7fd45d6dab78c158b12326af4be9ae96ce416adb.tar.bz2
raul-7fd45d6dab78c158b12326af4be9ae96ce416adb.zip
Suppress warnings with older clang-tidy
Diffstat (limited to 'include/raul/Exception.hpp')
-rw-r--r--include/raul/Exception.hpp1
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: