|
|
|
@ -390,9 +390,6 @@ namespace CppSharp.AST
@@ -390,9 +390,6 @@ namespace CppSharp.AST
|
|
|
|
|
if (!VisitDeclaration(typedef)) |
|
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
if (typedef.Type == null) |
|
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
return typedef.Type.Visit(this, typedef.QualifiedType.Qualifiers); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -401,9 +398,6 @@ namespace CppSharp.AST
@@ -401,9 +398,6 @@ namespace CppSharp.AST
|
|
|
|
|
if (!VisitDeclaration(typeAlias)) |
|
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
if (typeAlias.Type == null) |
|
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
return typeAlias.Type.Visit(this, typeAlias.QualifiedType.Qualifiers); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|