Added typedef and typealias test

This commit is contained in:
Bartek Kryza
2021-03-21 18:36:51 +01:00
parent 7001c0870e
commit 06256f0456
7 changed files with 120 additions and 4 deletions

View File

@@ -599,8 +599,11 @@ enum CXChildVisitResult process_field(
m.is_static = cursor.is_static();
spdlog::debug("Adding member {} {}::{} {}, {}, {}", m.type, parent->name,
cursor.spelling(), t, tr, tr.type_declaration());
spdlog::debug(
"Adding member {} {}::{} "
"\n\tCURSOR={}\n\tTYPE={}\n\tTYPEDECL={}\n\tUNDERLYINGTYPE={}",
m.type, parent->name, cursor.spelling(), cursor, t,
tr.type_declaration(), tr.type_declaration().underlying_type());
if (tr.is_unexposed()) {
added_relation_to_instantiation =