Skip to content

Commit

Permalink
Disable performance-enum-size.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcfehling committed Sep 6, 2024
1 parent 68386a8 commit cfea547
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
# - selected modernize-* warnings:
# Some of these produce a lot of noise for limited utility.
#
# - performance-enum-size:
# We don't care if an enum could use a smaller base type than
# unsigned int.
#
# - performance-inefficient-string-concatenation:
# We don't care about "a"+to_string(5)+...
#
Expand All @@ -33,9 +37,10 @@ Checks: >
-modernize-use-transparent-functors,
mpi-*,
performance-*,
-performance-avoid-endl,
-performance-enum-size,
-performance-inefficient-string-concatenation,
-performance-no-automatic-move,
-performance-avoid-endl,
readability-qualified-auto
WarningsAsErrors: '*'

0 comments on commit cfea547

Please sign in to comment.