Browse Source

Fix whitespace inconsistency by needing a newline when generating functions.

pull/1/head
triton 12 years ago
parent
commit
80dd6b75c1
  1. 1
      src/Generator/Generators/CSharp/CSharpTextTemplate.cs

1
src/Generator/Generators/CSharp/CSharpTextTemplate.cs

@ -1526,6 +1526,7 @@ namespace CppSharp.Generators.CSharp @@ -1526,6 +1526,7 @@ namespace CppSharp.Generators.CSharp
WriteLine("public unsafe static extern {0} {1}({2});", retType,
GetFunctionIdentifier(function, @class),
string.Join(", ", @params));
NeedNewLine();
}
}

Loading…
Cancel
Save