[clang] Add the support for recognizing WTF::move like std::move (PR #170820)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 9 13:48:33 PST 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions h,cpp -- clang/lib/StaticAnalyzer/Checkers/WebKit/ASTUtils.cpp clang/lib/StaticAnalyzer/Checkers/WebKit/ForwardDeclChecker.cpp clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.h clang/lib/StaticAnalyzer/Checkers/WebKit/RawPtrRefLambdaCapturesChecker.cpp clang/test/Analysis/Checkers/WebKit/call-args-checked.cpp clang/test/Analysis/Checkers/WebKit/mock-types.h clang/test/Analysis/Checkers/WebKit/objc-mock-types.h clang/test/Analysis/Checkers/WebKit/uncounted-lambda-captures.cpp clang/test/Analysis/Checkers/WebKit/uncounted-obj-arg.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp b/clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp
index 379119549..dd37e8741 100644
--- a/clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp
+++ b/clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp
@@ -190,7 +190,7 @@ bool isStdOrWTFMove(const clang::FunctionDecl *F) {
auto *Namespace = F->getParent();
if (!Namespace)
return false;
- auto* TUDeck = Namespace->getParent();
+ auto *TUDeck = Namespace->getParent();
if (!TUDeck || !isa<TranslationUnitDecl>(TUDeck))
return false;
auto NsName = safeGetName(Namespace);
``````````
</details>
https://github.com/llvm/llvm-project/pull/170820
More information about the cfe-commits
mailing list