Parse cpp_function_template
This commit is contained in:
parent
d6f0997fb6
commit
eeb48f1df5
18 changed files with 397 additions and 60 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue