summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorJuan Gu <juan.gu@mongodb.com>2022-08-23 22:00:52 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-08-23 22:41:19 +0000
commit59e3a718bb5712aeb51813d59208f6234d85efc6 (patch)
tree18f22dbe8f1eb17fec6222313cc9408f0e6d085b /.clang-tidy
parentb60279a4225e4b40e2394780cf4aee9e7e572cc9 (diff)
downloadmongo-59e3a718bb5712aeb51813d59208f6234d85efc6.tar.gz
SERVER-68834 clany tidy bugprone-integer-division fixes
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy2
1 files changed, 1 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 586e1742cc0..0d7e6e74028 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -1,3 +1,3 @@
-Checks: '-*,bugprone-unused-raii,bugprone-use-after-move,readability-const-return-type,readability-avoid-const-params-in-decls,boost-use-to-string,bugprone-inaccurate-erase'
+Checks: '-*,bugprone-unused-raii,bugprone-use-after-move,readability-const-return-type,readability-avoid-const-params-in-decls,boost-use-to-string,bugprone-inaccurate-erase,bugprone-integer-division'
WarningsAsErrors: '*'
HeaderFilterRegex: '(mongo/.*|build/.*)'