Parse cpp_function_template

This commit is contained in:
Jonathan Müller 2017-03-25 14:34:04 +01:00
commit eeb48f1df5
18 changed files with 397 additions and 60 deletions

View file

@ -8,11 +8,16 @@
using namespace cppast;
cpp_entity_kind cpp_function_template::do_get_entity_kind() const noexcept
cpp_entity_kind cpp_function_template::kind() noexcept
{
return cpp_entity_kind::function_template_t;
}
cpp_entity_kind cpp_function_template::do_get_entity_kind() const noexcept
{
return kind();
}
cpp_entity_kind cpp_function_template_specialization::do_get_entity_kind() const noexcept
{
return cpp_entity_kind::function_template_specialization_t;