Browse Source

Implemented CLITypePrinter.VisitTemplateParameterSubstitutionType.

Should fix https://github.com/mono/CppSharp/issues/651.
pull/646/head
Joao Matos 10 years ago
parent
commit
f35ec1b693
  1. 2
      src/Generator/Generators/CLI/CLITypePrinter.cs

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

@ -285,7 +285,7 @@ namespace CppSharp.Generators.CLI @@ -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)

Loading…
Cancel
Save