diff --git a/src/Generator/Types/TypeMap.cs b/src/Generator/Types/TypeMap.cs index ce0a4ca0..9b018d93 100644 --- a/src/Generator/Types/TypeMap.cs +++ b/src/Generator/Types/TypeMap.cs @@ -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;