From c7dba1b5bd89d1871af12fed42876035a6dfbacc Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 16 Apr 2014 22:10:54 +0100 Subject: [PATCH] Fixed type map matching regression introduced in d68b7b3. Thanks to Elias Holzer for reporting the issue. Conflicts: src/Generator/Generators/CLI/CLITypePrinter.cs --- src/Generator/Generators/CLI/CLITypePrinter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/Generators/CLI/CLITypePrinter.cs b/src/Generator/Generators/CLI/CLITypePrinter.cs index 2ab36616..a98431d6 100644 --- a/src/Generator/Generators/CLI/CLITypePrinter.cs +++ b/src/Generator/Generators/CLI/CLITypePrinter.cs @@ -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,