Browse Source

Removed type map matching for declarations.

We should only try to do this for types as far as I can tell...
pull/124/head
triton 12 years ago
parent
commit
97be1899af
  1. 8
      src/Generator/Types/Types.cs

8
src/Generator/Types/Types.cs

@ -48,14 +48,6 @@ namespace CppSharp @@ -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();

Loading…
Cancel
Save