From efabb089432b03f09c68a9bcfcd0f2d794c9cba7 Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 27 Feb 2013 01:55:50 +0000 Subject: [PATCH] Added native to managed marshaling of fields. --- src/Generator/Generators/CLI/CLIMarshal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/Generators/CLI/CLIMarshal.cs b/src/Generator/Generators/CLI/CLIMarshal.cs index 3bd80517..03cc8609 100644 --- a/src/Generator/Generators/CLI/CLIMarshal.cs +++ b/src/Generator/Generators/CLI/CLIMarshal.cs @@ -165,7 +165,7 @@ namespace Cxxi.Generators.CLI public bool VisitFieldDecl(Field field) { - throw new NotImplementedException(); + return field.Type.Visit(this); } public bool VisitFunctionDecl(Function function)