Add cpp_constructor and cpp_destructor

This commit is contained in:
Jonathan Müller 2017-01-24 21:27:41 +01:00
commit 7c896453b5
5 changed files with 106 additions and 0 deletions

View file

@ -17,3 +17,13 @@ cpp_entity_kind cpp_conversion_op::do_get_entity_kind() const noexcept
{
return cpp_entity_kind::conversion_op_t;
}
cpp_entity_kind cpp_constructor::do_get_entity_kind() const noexcept
{
return cpp_entity_kind::constructor_t;
}
cpp_entity_kind cpp_destructor::do_get_entity_kind() const noexcept
{
return cpp_entity_kind::destructor_t;
}