[clang] [alpha.webkit.UncountedCallArgsChecker] Allow protector functions in Objective-C++ (PR #108184)
Artem Dergachev via cfe-commits
cfe-commits at lists.llvm.org
Wed Sep 11 10:00:21 PDT 2024
================
@@ -143,6 +143,16 @@ bool isReturnValueRefCounted(const clang::FunctionDecl *F) {
return false;
}
+std::optional<bool> isUncounted(const clang::QualType T) {
----------------
haoNoQ wrote:
`clang::` is redundant because you're in `using namespace clang`.
https://github.com/llvm/llvm-project/pull/108184
More information about the cfe-commits
mailing list