Skip to content

Commit 4f0dd69

Browse files
authored
style(clang-tidy): Disable misc-const-correctness (#1748)
closes #1675 Mostly reporting false positives, creating noise. The check doesn't notice the modification after initialization properly. Signed-off-by: Balakrishna Avulapati <ba@bavulapati.com>
1 parent 18bf995 commit 4f0dd69

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
@@ -11,7 +11,7 @@ Checks: '-*,
1111
performance-*,-performance-enum-size,
1212
portability-*,
1313
objc-*,
14-
misc-*,-misc-no-recursion,-misc-unused-parameters'
14+
misc-*,-misc-no-recursion,-misc-unused-parameters,-misc-const-correctness'
1515
WarningsAsErrors: '*'
1616
HeaderFilterRegex: ''
1717
FormatStyle: none

0 commit comments

Comments
 (0)