Browse Source

Formatting fixes.

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

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

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

Loading…
Cancel
Save