Browse Source

Fixed type map matching regression introduced in d68b7b3.

Thanks to Elias Holzer for reporting the issue.

Conflicts:
	src/Generator/Generators/CLI/CLITypePrinter.cs
pull/227/merge
triton 11 years ago
parent
commit
c7dba1b5bd
  1. 2
      src/Generator/Generators/CLI/CLITypePrinter.cs

2
src/Generator/Generators/CLI/CLITypePrinter.cs

@ -167,7 +167,7 @@ namespace CppSharp.Generators.CLI @@ -167,7 +167,7 @@ namespace CppSharp.Generators.CLI
return string.Format("{0}*", typeName);
}
return pointee.Visit(this, quals);
return pointer.Pointee.Visit(this, quals);
}
public string VisitMemberPointerType(MemberPointerType member,

Loading…
Cancel
Save