Skip to content

Commit 264dc25

Browse files
authored
style(clang-tidy): disable cppcoreguidelines-rvalue-reference-param-not-moved (#1747)
closes #1672 This just flags where ever it finds and rvalue reference parameter but doesn't seem to check the body for std::move. I don't think this is very useful to have this check. The check is good but the tooling is not upto the mark. Signed-off-by: Balakrishna Avulapati <ba@bavulapati.com>
1 parent 4f0dd69 commit 264dc25

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
@@ -7,7 +7,7 @@ Checks: '-*,
77
clang-diagnostic-*,
88
modernize-*,
99
concurrency-*,
10-
cppcoreguidelines-*,
10+
cppcoreguidelines-*,-cppcoreguidelines-rvalue-reference-param-not-moved,
1111
performance-*,-performance-enum-size,
1212
portability-*,
1313
objc-*,

0 commit comments

Comments
 (0)