Browse Source

Removed dependent types checking from type maps.

This fixes a regression, more work might still be needed in this area.
pull/144/head
triton 12 years ago
parent
commit
0e38a74c13
  1. 6
      src/Generator/Types/TypeMap.cs

6
src/Generator/Types/TypeMap.cs

@ -162,12 +162,6 @@ namespace CppSharp.Types @@ -162,12 +162,6 @@ namespace CppSharp.Types
public bool FindTypeMap(Type type, out TypeMap typeMap)
{
if (type.IsDependent)
{
typeMap = null;
return false;
}
var typePrinter = new CppTypePrinter(this);
var template = type as TemplateSpecializationType;

Loading…
Cancel
Save