Browse Source

Return the result of VisitDeclaration in TypeIgnoreChecker.VisitClassDecl.

pull/28/head
triton 12 years ago
parent
commit
081ca5e6c1
  1. 3
      src/Generator/Types/Types.cs

3
src/Generator/Types/Types.cs

@ -69,8 +69,7 @@ namespace CppSharp @@ -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,

Loading…
Cancel
Save