Browse Source

Formatting fixes.

pull/86/head
triton 12 years ago
parent
commit
c602f3b331
  1. 5
      src/Generator/Generators/CSharp/CSharpTextTemplate.cs

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

@ -5,7 +5,6 @@ using System.IO;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using CppSharp.AST; using CppSharp.AST;
using CppSharp.Utils;
using Type = CppSharp.AST.Type; using Type = CppSharp.AST.Type;
namespace CppSharp.Generators.CSharp namespace CppSharp.Generators.CSharp
@ -915,10 +914,10 @@ namespace CppSharp.Generators.CSharp
} }
NewLine(); NewLine();
WriteStartBraceIndent(); WriteStartBraceIndent();
Method method = function as Method; var method = function as Method;
if (method != null && method.IsOverride && method.IsSynthetized) if (method != null && method.IsOverride && method.IsSynthetized)
{ {
GenerateVirtualTableFunctionCall(function, @class); GenerateVirtualTableFunctionCall(function, @class);
} }
else else
{ {

Loading…
Cancel
Save