Browse Source

A cosmetic fix in the new type map for FILE.

Signed-off-by: Dimitar Dobrev <dpldobrev@yahoo.com>
pull/522/head
Dimitar Dobrev 10 years ago
parent
commit
32a49086ac
  1. 4
      src/Generator/Types/Std/Stdlib.cs

4
src/Generator/Types/Std/Stdlib.cs

@ -355,12 +355,12 @@ namespace CppSharp.Types.Std @@ -355,12 +355,12 @@ namespace CppSharp.Types.Std
public override void CSharpMarshalToNative(MarshalContext ctx)
{
ctx.Return.WriteLine(ctx.Parameter.Name);
ctx.Return.Write(ctx.Parameter.Name);
}
public override void CSharpMarshalToManaged(MarshalContext ctx)
{
ctx.Return.WriteLine(ctx.ReturnVarName);
ctx.Return.Write(ctx.ReturnVarName);
}
}
}

Loading…
Cancel
Save