Browse Source

Implement CSharpTypePrinter.VisitVectorType.

Fixes and closes issue #741.
pull/742/head
Joao Matos 9 years ago
parent
commit
f88ea66a88
  1. 2
      src/Generator/Generators/CSharp/CSharpTypePrinter.cs

2
src/Generator/Generators/CSharp/CSharpTypePrinter.cs

@ -840,7 +840,7 @@ namespace CppSharp.Generators.CSharp @@ -840,7 +840,7 @@ namespace CppSharp.Generators.CSharp
public CSharpTypePrinterResult VisitVectorType(VectorType vectorType, TypeQualifiers quals)
{
throw new NotImplementedException();
return vectorType.ElementType.Visit(this);
}
public CSharpTypePrinterResult VisitUnsupportedType(UnsupportedType type, TypeQualifiers quals)

Loading…
Cancel
Save