From f88ea66a885345bf63733886eb9850c634130609 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Thu, 2 Feb 2017 17:22:37 +0000 Subject: [PATCH] Implement CSharpTypePrinter.VisitVectorType. Fixes and closes issue #741. --- src/Generator/Generators/CSharp/CSharpTypePrinter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/Generators/CSharp/CSharpTypePrinter.cs b/src/Generator/Generators/CSharp/CSharpTypePrinter.cs index 22135516..ef36f5c9 100644 --- a/src/Generator/Generators/CSharp/CSharpTypePrinter.cs +++ b/src/Generator/Generators/CSharp/CSharpTypePrinter.cs @@ -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)