[PATCH] D103750: [analyzer][WIP] Handle std::make_unique for SmartPtrModeling
Deep Majumder via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jun 7 11:04:11 PDT 2021
RedDocMD marked 3 inline comments as done.
RedDocMD added inline comments.
================
Comment at: clang/lib/StaticAnalyzer/Checkers/SmartPtrModeling.cpp:337
+
+bool isUniquePtrType(QualType QT) {
+ const auto *T = QT.getTypePtr();
----------------
NoQ wrote:
> Please merge with `isStdSmartPtrCall`.
I don't think that can be done because `isStdSmartPtrCall` checks //calls// like `a.foo()`, checking if `a` is a smart-ptr. On the other hand I need to check for statements like `a = foo()` and ensure that `a` is a smart-ptr.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103750/new/
https://reviews.llvm.org/D103750
More information about the cfe-commits
mailing list