[PATCH] D67024: [analyzer] NFC: Replace intrusive list of bug reports with a vector of pointers.

Kristóf Umann via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Sep 3 13:09:49 PDT 2019


Szelethus accepted this revision.
Szelethus added a comment.

Other then the things @gribozavr mentioned, LGTM.



================
Comment at: clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h:458
+public:
+  typedef llvm::SmallVector<std::unique_ptr<BugReport>, 4> ReportList;
+  using iterator = ReportList::iterator;
----------------
Prefer `using`.


Repository:
  rC Clang

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D67024/new/

https://reviews.llvm.org/D67024





More information about the cfe-commits mailing list