diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2020-11-12 16:35:11 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2020-11-12 22:55:31 (GMT) |
commit | d2b648ec4c09d91f57ee73838d284b67366123f6 (patch) | |
tree | 157a3810e0b54f6b7a49de794280c86ec78010cc | |
parent | d579c4152f2ce6d4f4afda6d8b6e194893707b7e (diff) | |
download | CMake-d2b648ec4c09d91f57ee73838d284b67366123f6.zip CMake-d2b648ec4c09d91f57ee73838d284b67366123f6.tar.gz CMake-d2b648ec4c09d91f57ee73838d284b67366123f6.tar.bz2 |
clang-tidy: ignore `misc-no-recursion`
CMake has intentional recursion in its codebase, so avoid warning about
occurrences.
-rw-r--r-- | .clang-tidy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index 10819ef..5e513fb 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -7,6 +7,7 @@ bugprone-*,\ -bugprone-too-small-loop-variable,\ google-readability-casting,\ misc-*,\ +-misc-no-recursion,\ -misc-non-private-member-variables-in-classes,\ -misc-static-assert,\ modernize-*,\ |