From dc186ad5da4f5a7dcb9104c1dd84b2ff51a563ae Mon Sep 17 00:00:00 2001 From: triton Date: Sat, 16 Aug 2014 00:39:33 +0100 Subject: [PATCH] Stubbed out some type printing overloads. --- src/Generator/Generators/CLI/CLITypePrinter.cs | 4 ++-- src/Generator/Types/CppTypePrinter.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Generator/Generators/CLI/CLITypePrinter.cs b/src/Generator/Generators/CLI/CLITypePrinter.cs index 2c4ef504..86f1c804 100644 --- a/src/Generator/Generators/CLI/CLITypePrinter.cs +++ b/src/Generator/Generators/CLI/CLITypePrinter.cs @@ -280,12 +280,12 @@ namespace CppSharp.Generators.CLI public string VisitInjectedClassNameType(InjectedClassNameType injected, TypeQualifiers quals) { - throw new NotImplementedException(); + return string.Empty; } public string VisitDependentNameType(DependentNameType dependent, TypeQualifiers quals) { - throw new NotImplementedException(); + return string.Empty; } public string VisitPackExpansionType(PackExpansionType packExpansionType, TypeQualifiers quals) diff --git a/src/Generator/Types/CppTypePrinter.cs b/src/Generator/Types/CppTypePrinter.cs index 4fd976ee..cbfbe519 100644 --- a/src/Generator/Types/CppTypePrinter.cs +++ b/src/Generator/Types/CppTypePrinter.cs @@ -169,7 +169,7 @@ namespace CppSharp.Types public string VisitDependentNameType(DependentNameType dependent, TypeQualifiers quals) { - throw new System.NotImplementedException(); + return string.Empty; } public string VisitPackExpansionType(PackExpansionType packExpansionType, TypeQualifiers quals)