From 97be1899af01963fa6ab84618864e6777156d7fc Mon Sep 17 00:00:00 2001 From: triton Date: Sun, 1 Dec 2013 00:13:21 +0000 Subject: [PATCH] Removed type map matching for declarations. We should only try to do this for types as far as I can tell... --- src/Generator/Types/Types.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Generator/Types/Types.cs b/src/Generator/Types/Types.cs index 138ad0bb..1171ea8d 100644 --- a/src/Generator/Types/Types.cs +++ b/src/Generator/Types/Types.cs @@ -48,14 +48,6 @@ namespace CppSharp if (decl.CompleteDeclaration != null) return VisitDeclaration(decl.CompleteDeclaration); - TypeMap typeMap; - if (TypeMapDatabase.FindTypeMap(decl, out typeMap) - && typeMap.IsIgnored) - { - Ignore(); - return false; - } - if (decl.Ignore) { Ignore();