diff options
Diffstat (limited to 'include/clang/AST/Type.h')
-rw-r--r-- | include/clang/AST/Type.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index 1c0a081c45..2487da61c8 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -1449,6 +1449,11 @@ public: static bool anyDependentTemplateArguments(const TemplateArgument *Args, unsigned NumArgs); + /// \brief Print a template argument list, including the '<' and '>' + /// enclosing the template arguments. + static std::string PrintTemplateArgumentList(const TemplateArgument *Args, + unsigned NumArgs); + typedef const TemplateArgument * iterator; iterator begin() const { return getArgs(); } |