From f35ec1b693ef5397f48e374dec1a61aacfca6b9c Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Thu, 26 May 2016 23:28:49 +0100 Subject: [PATCH] Implemented CLITypePrinter.VisitTemplateParameterSubstitutionType. Should fix https://github.com/mono/CppSharp/issues/651. --- 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 2b6e64c1..659ddeb6 100644 --- a/src/Generator/Generators/CLI/CLITypePrinter.cs +++ b/src/Generator/Generators/CLI/CLITypePrinter.cs @@ -285,7 +285,7 @@ namespace CppSharp.Generators.CLI public string VisitTemplateParameterSubstitutionType( TemplateParameterSubstitutionType param, TypeQualifiers quals) { - throw new NotImplementedException(); + return param.Replacement.Visit(this); } public string VisitInjectedClassNameType(InjectedClassNameType injected, TypeQualifiers quals)