diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/.clang-tidy | 1 | ||||
-rw-r--r-- | test/headers/.clang-tidy | 1 | ||||
-rw-r--r-- | test/maid_test.cpp | 2 |
3 files changed, 1 insertions, 3 deletions
diff --git a/test/.clang-tidy b/test/.clang-tidy index 7563367..b51e83e 100644 --- a/test/.clang-tidy +++ b/test/.clang-tidy @@ -29,7 +29,6 @@ Checks: > -llvmlibc-*, -modernize-make-unique, -modernize-return-braced-init-list, - -modernize-use-nodiscard, -modernize-use-trailing-return-type, -readability-function-cognitive-complexity, -readability-identifier-length, diff --git a/test/headers/.clang-tidy b/test/headers/.clang-tidy index 1a91f8b..1beaf9e 100644 --- a/test/headers/.clang-tidy +++ b/test/headers/.clang-tidy @@ -21,7 +21,6 @@ Checks: > -hicpp-no-array-decay, -llvmlibc-*, -modernize-return-braced-init-list, - -modernize-use-nodiscard, -modernize-use-trailing-return-type, -readability-identifier-length, -readability-implicit-bool-conversion, diff --git a/test/maid_test.cpp b/test/maid_test.cpp index cb4e461..2a936f9 100644 --- a/test/maid_test.cpp +++ b/test/maid_test.cpp @@ -38,7 +38,7 @@ public: ~Junk() override { --n_junk; } - size_t value() const { return _val; } + [[nodiscard]] size_t value() const { return _val; } private: size_t _val; |