Browse Source

Added native to managed marshaling of fields.

pull/1/head
triton 13 years ago
parent
commit
efabb08943
  1. 2
      src/Generator/Generators/CLI/CLIMarshal.cs

2
src/Generator/Generators/CLI/CLIMarshal.cs

@ -165,7 +165,7 @@ namespace Cxxi.Generators.CLI
public bool VisitFieldDecl(Field field) public bool VisitFieldDecl(Field field)
{ {
throw new NotImplementedException(); return field.Type.Visit(this);
} }
public bool VisitFunctionDecl(Function function) public bool VisitFunctionDecl(Function function)

Loading…
Cancel
Save