[PATCH] D55491: Implement TemplateArgument dumping in terms of Visitor
Stephen Kelly via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat Jan 12 06:04:45 PST 2019
steveire marked an inline comment as done.
steveire added inline comments.
================
Comment at: include/clang/AST/TemplateArgumentVisitor.h:24
+/// A simple visitor class that helps create template argument visitors.
+template <template <typename> class Ref, typename ImplClass,
+ typename RetTy = void, typename... ParamTys>
----------------
aaron.ballman wrote:
> Missed a `typename` in there.
If you're talking about the TTP, class must be used until C++17. See https://en.cppreference.com/w/cpp/language/template_parameters
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55491/new/
https://reviews.llvm.org/D55491
More information about the cfe-commits
mailing list