Browse Source

Stubbed out some type printing overloads.

pull/329/head
triton 12 years ago
parent
commit
dc186ad5da
  1. 4
      src/Generator/Generators/CLI/CLITypePrinter.cs
  2. 2
      src/Generator/Types/CppTypePrinter.cs

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

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

2
src/Generator/Types/CppTypePrinter.cs

@ -169,7 +169,7 @@ namespace CppSharp.Types @@ -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)

Loading…
Cancel
Save