Clang-Tidy: Enable bugprone-too-small-loop-variable errors

This commit is contained in:
Gerald Combs 2025-03-29 16:26:27 -07:00
parent 5778ad7b07
commit a966577ce0

View File

@ -15,6 +15,6 @@ ExtraArgs:
# https://clang.llvm.org/extra/clang-tidy/checks/list.html
Checks: '-*,misc-no-recursion,bugprone-infinite-loop,bugprone-too-small-loop-variable'
WarningsAsErrors: 'misc-no-recursion,bugprone-infinite-loop'
WarningsAsErrors: 'misc-no-recursion,bugprone-infinite-loop,bugprone-too-small-loop-variable'
UseColor: true