File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 2626# avoiding C arrays often makes the code less readable, and std::array is
2727# not a drop-in replacement because it doesn't deduce the size.
2828#
29+ # -modernize-type-traits: clang-tidy recommands using c++17 style variable
30+ # templates. We will enable this check after we moved to c++17.
31+ #
2932# -performance-move-const-arg: This warning requires the developer to
3033# know/care more about the implementation details of types/functions than
3134# should be necessary. For example, `A a; F(std::move(a));` will trigger a
@@ -89,6 +92,7 @@ Checks: >
8992 -modernize-concat-nested-namespaces,
9093 -modernize-use-nodiscard,
9194 -modernize-avoid-c-arrays,
95+ -modernize-type-traits,
9296 -performance-move-const-arg,
9397 -performance-avoid-endl,
9498 -performance-enum-size,
You can’t perform that action at this time.
0 commit comments