Browse Source

TypeIgnoreChecker now ignores declarations when GenerationKind == GenerationKind.None.

pull/228/merge
marcos henrich 12 years ago committed by triton
parent
commit
2a162489c2
  1. 2
      src/Generator/Types/Types.cs

2
src/Generator/Types/Types.cs

@ -55,7 +55,7 @@ namespace CppSharp
if (decl.CompleteDeclaration != null) if (decl.CompleteDeclaration != null)
return VisitDeclaration(decl.CompleteDeclaration); return VisitDeclaration(decl.CompleteDeclaration);
if (decl.ExplicityIgnored) if (decl.GenerationKind == GenerationKind.None)
{ {
Ignore(); Ignore();
return false; return false;

Loading…
Cancel
Save