Fix include handling support
Can't be tested until clang 4.0.
This commit is contained in:
parent
58cc481318
commit
2e1dce2ffd
5 changed files with 98 additions and 17 deletions
|
|
@ -18,7 +18,12 @@ cpp_entity_kind cpp_macro_definition::do_get_entity_kind() const noexcept
|
|||
return kind();
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_include_directive::do_get_entity_kind() const noexcept
|
||||
cpp_entity_kind cpp_include_directive::kind() noexcept
|
||||
{
|
||||
return cpp_entity_kind::include_directive_t;
|
||||
}
|
||||
|
||||
cpp_entity_kind cpp_include_directive::do_get_entity_kind() const noexcept
|
||||
{
|
||||
return kind();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue