Parse cpp_destructor

This commit is contained in:
Jonathan Müller 2017-03-12 18:38:31 +01:00
commit e787b845d5
6 changed files with 118 additions and 5 deletions

View file

@ -38,7 +38,12 @@ cpp_entity_kind cpp_constructor::do_get_entity_kind() const noexcept
return kind();
}
cpp_entity_kind cpp_destructor::do_get_entity_kind() const noexcept
cpp_entity_kind cpp_destructor::kind() noexcept
{
return cpp_entity_kind::destructor_t;
}
cpp_entity_kind cpp_destructor::do_get_entity_kind() const noexcept
{
return kind();
}