From 2a162489c276d7d5f4d9b676289ddd44a6d440ae Mon Sep 17 00:00:00 2001 From: marcos henrich Date: Wed, 16 Apr 2014 17:46:08 +0100 Subject: [PATCH] TypeIgnoreChecker now ignores declarations when GenerationKind == GenerationKind.None. --- src/Generator/Types/Types.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/Types/Types.cs b/src/Generator/Types/Types.cs index 8d1393d9..56056b1c 100644 --- a/src/Generator/Types/Types.cs +++ b/src/Generator/Types/Types.cs @@ -55,7 +55,7 @@ namespace CppSharp if (decl.CompleteDeclaration != null) return VisitDeclaration(decl.CompleteDeclaration); - if (decl.ExplicityIgnored) + if (decl.GenerationKind == GenerationKind.None) { Ignore(); return false;