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)