From 7fd45d6dab78c158b12326af4be9ae96ce416adb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 19 Dec 2020 11:59:55 +0100 Subject: Suppress warnings with older clang-tidy --- include/raul/Exception.hpp | 1 + 1 file changed, 1 insertion(+) (limited to 'include/raul') 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: -- cgit v1.2.1