Browse Source

Visit the base VisitDeclaration in Pass.

pull/13/merge
triton 13 years ago
parent
commit
443e2a278b
  1. 2
      src/Generator/Passes/Pass.cs

2
src/Generator/Passes/Pass.cs

@ -35,7 +35,7 @@ namespace CppSharp.Passes @@ -35,7 +35,7 @@ namespace CppSharp.Passes
public override bool VisitDeclaration(Declaration decl)
{
return !IsDeclExcluded(decl);
return !IsDeclExcluded(decl) && base.VisitDeclaration(decl);
}
bool IsDeclExcluded(Declaration decl)

Loading…
Cancel
Save