From 537ceda774d148f0b9c861f5e27ba23ddfa533f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Mares?= Date: Sat, 7 Dec 2013 01:27:27 +0000 Subject: [PATCH] bug fixes --- src/Generator/Types/CppTypePrinter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Generator/Types/CppTypePrinter.cs b/src/Generator/Types/CppTypePrinter.cs index 0a8ded8d..9ed8a8b9 100644 --- a/src/Generator/Types/CppTypePrinter.cs +++ b/src/Generator/Types/CppTypePrinter.cs @@ -163,9 +163,9 @@ namespace CppSharp.Types return param.Replacement.Visit(this); } - public string VisitInjectedClassNameType(InjectedClassNameType injected, TypeQualifiers quals) - { - throw new System.NotImplementedException(); + public string VisitInjectedClassNameType(InjectedClassNameType injected, TypeQualifiers quals) + { + return injected.Class.Visit(this); } public string VisitDependentNameType(DependentNameType dependent, TypeQualifiers quals)