[PATCH] D70725: [analyzer] Add path notes to FuchsiaHandleCheck
Gábor Horváth via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 3 11:38:30 PST 2019
xazax.hun marked an inline comment as done.
xazax.hun added inline comments.
================
Comment at: clang/lib/StaticAnalyzer/Checkers/FuchsiaHandleChecker.cpp:362
}
- C.addTransition(State);
+ const NoteTag *T = C.getNoteTag([this, notes](BugReport &BR) -> std::string {
+ if (&BR.getBugType() != &UseAfterRelease &&
----------------
Hmm, so we have C++14 now and I can do a move capture right? Will update in the next iteration.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70725/new/
https://reviews.llvm.org/D70725
More information about the cfe-commits
mailing list