[clang] [Analyzer] Support RefAllowingPartiallyDestroyed and RefPtrAllowingPartiallyDestroyed (PR #82209)

via cfe-commits cfe-commits at lists.llvm.org
Sun Feb 18 21:52:04 PST 2024


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 ead0a9777f8ccb5c26d50d96bade6cd5b47f496b d26f41816f443922569fc713d1cd919fd96ba124 -- clang/test/Analysis/Checkers/WebKit/ref-allowing-partially-destroyed.cpp clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp clang/test/Analysis/Checkers/WebKit/mock-types.h
``````````

</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 1b349d48a9..6f768983ed 100644
--- a/clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp
+++ b/clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp
@@ -103,7 +103,7 @@ std::optional<bool> isRefCountable(const CXXRecordDecl* R)
   return hasRef && hasDeref;
 }
 
-bool isRefType(const std::string& name) {
+bool isRefType(const std::string &name) {
   return name == "Ref" || name == "RefAllowingPartiallyDestroyed" ||
          name == "RefPtr" || name == "RefPtrAllowingPartiallyDestroyed";
 }

``````````

</details>


https://github.com/llvm/llvm-project/pull/82209


More information about the cfe-commits mailing list