[PATCH] D146656: [clang][ExtractAPI] Refactor ExtractAPIVisitor to make it more extensible
Zixu Wang via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 22 13:18:35 PDT 2023
zixuw added inline comments.
================
Comment at: clang/include/clang/ExtractAPI/ExtractAPIVisitor.h:628
+public:
+ ExtractAPIVisitor(ASTContext &Context, APISet &API) : Base(Context, API) {}
+
----------------
Same as above, should the constructor be `protected`? I guess it depends if we want people to just instantiate and use a `ExtractAPIVisitor`.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146656/new/
https://reviews.llvm.org/D146656
More information about the cfe-commits
mailing list