Skip to content

Commit 9b1a0ba

Browse files
authored
style(clang-tidy): disable performance-enum-size (#1751)
fixes #1682 Clang-tidy does notifies the performance benefit of usign smaller data type for enum but doesn't recognize the proper usage. Signed-off-by: Balakrishna Avulapati <ba@bavulapati.com>
1 parent e50d9f6 commit 9b1a0ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/common/targets/clang-tidy.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Checks: '-*,
88
modernize-*,
99
concurrency-*,
1010
cppcoreguidelines-*,
11-
performance-*,
11+
performance-*,-performance-enum-size,
1212
portability-*,
1313
objc-*,
1414
misc-*,-misc-no-recursion'

0 commit comments

Comments
 (0)