[PATCH] D103434: [analyzer] Allow visitors to run callbacks on completion
Balázs Kéri via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 3 01:03:33 PDT 2021
balazske added inline comments.
================
Comment at: clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h:95
+ /// This method is run once the \ref Stop method is called.
+ virtual void OnStop(const ExplodedNode *Curr, BugReporterContext &BRC,
+ PathSensitiveBugReport &BR) const = 0;
----------------
According to the conventions, should use `stop` and `onStop` instead of `Stop`, `OnStop`?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103434/new/
https://reviews.llvm.org/D103434
More information about the cfe-commits
mailing list