[PATCH] D47135: [analyzer][WIP] A checker for dangling string pointers in C++
Dávid Bolvanský via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon May 21 15:37:11 PDT 2018
xbolva00 added inline comments.
================
Comment at: lib/StaticAnalyzer/Checkers/DanglingStringPointerChecker.cpp:29
+
+class DanglingStringPointerChecker : public Checker<check::PostCall> {
+ CallDescription CStrFn;
----------------
george.karpenkov wrote:
> "string" is a bit ambiguous, if this checker is specifically for std::string should we change the name to reflect that?
Agree, maybe DanglingStdStringPointerChecker?
Repository:
rC Clang
https://reviews.llvm.org/D47135
More information about the cfe-commits
mailing list