From 081ca5e6c19246bb44ece2e8c43da35d7049337c Mon Sep 17 00:00:00 2001 From: triton Date: Mon, 12 Aug 2013 17:09:24 +0100 Subject: [PATCH] Return the result of VisitDeclaration in TypeIgnoreChecker.VisitClassDecl. --- src/Generator/Types/Types.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Generator/Types/Types.cs b/src/Generator/Types/Types.cs index 21f5f221..1086b0c6 100644 --- a/src/Generator/Types/Types.cs +++ b/src/Generator/Types/Types.cs @@ -69,8 +69,7 @@ namespace CppSharp public override bool VisitClassDecl(Class @class) { - VisitDeclaration(@class); - return false; + return VisitDeclaration(@class); } public override bool VisitTypedefType(TypedefType typedef,