diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/.clang-tidy | 3 | ||||
-rw-r--r-- | include/raul/Exception.hpp | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/.clang-tidy b/include/.clang-tidy index b209887..c385440 100644 --- a/include/.clang-tidy +++ b/include/.clang-tidy @@ -13,8 +13,7 @@ Checks: > -cppcoreguidelines-pro-bounds-pointer-arithmetic, -cppcoreguidelines-pro-type-const-cast, -cppcoreguidelines-pro-type-reinterpret-cast, - -fuchsia-default-arguments-calls, - -fuchsia-default-arguments-declarations, + -fuchsia-default-arguments*, -fuchsia-overloaded-operator, -google-runtime-int, -hicpp-no-array-decay, 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: |