Skip to content

Commit 24d2e4c

Browse files
committed
Improve the ignoring of dependent name types
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent c5bcb48 commit 24d2e4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Generator/Types/TypeIgnoreChecker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public override bool VisitDeclaration(Declaration decl)
5757

5858
public override bool VisitDependentNameType(DependentNameType dependent, TypeQualifiers quals)
5959
{
60-
return dependent.Qualifier.Type.Visit(this);
60+
return dependent.Qualifier.Visit(this);
6161
}
6262

6363
public override bool VisitClassDecl(Class @class)

0 commit comments

Comments
 (0)