[clang-tools-extra] [clang-tidy] Extend modernize-pass-by-value to handle function body local copies (PR #182024)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 18 09:01:17 PST 2026
github-actions[bot] wrote:
<!--LLVM CODE LINT COMMENT: clang-tidy-->
:warning: C/C++ code linter, clang-tidy found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
```bash
git diff -U0 origin/main...HEAD -- clang-tools-extra/clang-tidy/modernize/PassByValueCheck.cpp |
python3 clang-tools-extra/clang-tidy/tool/clang-tidy-diff.py -path build -p1 -quiet
```
</details>
<details>
<summary>
View the output from clang-tidy here.
</summary>
```
clang-tools-extra/clang-tidy/modernize/PassByValueCheck.cpp:191:5: warning: replace loop by 'std::any_of()' [readability-use-anyofallof]
191 | for (const CXXConstructorDecl *C : Record->ctors())
| ^
clang-tools-extra/clang-tidy/modernize/PassByValueCheck.cpp:199:3: warning: variable 'Name' of type 'DeclarationName' can be declared 'const' [misc-const-correctness]
199 | DeclarationName Name = Func->getDeclName();
| ^
| const
clang-tools-extra/clang-tidy/modernize/PassByValueCheck.cpp:200:3: warning: replace loop by 'std::any_of()' [readability-use-anyofallof]
200 | for (const Decl *D : DC->lookup(Name))
| ^
```
</details>
https://github.com/llvm/llvm-project/pull/182024
More information about the cfe-commits
mailing list