[breaking] Turn macro parameters into propert entities
This commit is contained in:
parent
c341ae01f1
commit
56d4964b61
10 changed files with 194 additions and 31 deletions
|
|
@ -8,6 +8,16 @@
|
|||
|
||||
using namespace cppast;
|
||||
|
||||
cpp_entity_kind cpp_macro_parameter::kind() noexcept
|
||||
{
|
||||
return cpp_entity_kind::macro_parameter_t;
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_macro_parameter::do_get_entity_kind() const noexcept
|
||||
{
|
||||
return kind();
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_macro_definition::kind() noexcept
|
||||
{
|
||||
return cpp_entity_kind::macro_definition_t;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue