Parse cpp_namespace_alias
This commit is contained in:
parent
7e1ef01105
commit
45e9e5305b
9 changed files with 161 additions and 11 deletions
|
|
@ -33,11 +33,16 @@ std::unique_ptr<cpp_namespace_alias> cpp_namespace_alias::build(const cpp_entity
|
|||
return ptr;
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_namespace_alias::do_get_entity_kind() const noexcept
|
||||
cpp_entity_kind cpp_namespace_alias::kind() noexcept
|
||||
{
|
||||
return cpp_entity_kind::namespace_alias_t;
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_namespace_alias::do_get_entity_kind() const noexcept
|
||||
{
|
||||
return kind();
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_using_directive::do_get_entity_kind() const noexcept
|
||||
{
|
||||
return cpp_entity_kind::using_directive_t;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue