From c602f3b331f3e99dfca445b160aa933da9397008 Mon Sep 17 00:00:00 2001 From: triton Date: Sat, 19 Oct 2013 15:41:17 +0100 Subject: [PATCH] Formatting fixes. --- src/Generator/Generators/CSharp/CSharpTextTemplate.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Generator/Generators/CSharp/CSharpTextTemplate.cs b/src/Generator/Generators/CSharp/CSharpTextTemplate.cs index 4e67fbcb..35f63b22 100644 --- a/src/Generator/Generators/CSharp/CSharpTextTemplate.cs +++ b/src/Generator/Generators/CSharp/CSharpTextTemplate.cs @@ -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,10 +914,10 @@ 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); + GenerateVirtualTableFunctionCall(function, @class); } else {