Parse template parameters and part of alias template

This commit is contained in:
Jonathan Müller 2017-03-23 09:10:14 +01:00
commit cd4a25e959
14 changed files with 688 additions and 45 deletions

View file

@ -8,7 +8,12 @@
using namespace cppast;
cpp_entity_kind cpp_alias_template::do_get_entity_kind() const noexcept
cpp_entity_kind cpp_alias_template::kind() noexcept
{
return cpp_entity_kind::alias_template_t;
}
cpp_entity_kind cpp_alias_template::do_get_entity_kind() const noexcept
{
return kind();
}