Parse cpp_type_alias and simple cpp_type's
This commit is contained in:
parent
a38641ecb1
commit
b183513166
13 changed files with 533 additions and 13 deletions
|
|
@ -21,6 +21,11 @@ detail::cxstring detail::get_cursor_kind_spelling(const CXCursor& cur) noexcept
|
|||
return cxstring(clang_getCursorKindSpelling(clang_getCursorKind(cur)));
|
||||
}
|
||||
|
||||
detail::cxstring detail::get_type_kind_spelling(const CXType& type) noexcept
|
||||
{
|
||||
return cxstring(clang_getTypeKindSpelling(type.kind));
|
||||
}
|
||||
|
||||
namespace
|
||||
{
|
||||
std::mutex mtx;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue