Add cpp_constructor and cpp_destructor
This commit is contained in:
parent
03da9ceb63
commit
7c896453b5
5 changed files with 106 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue