From 9710936c7a00a41f222446cce586da04976fba74 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Wed, 24 Aug 2016 18:02:12 +0100 Subject: [PATCH] Order usings in Driver.cs. --- src/Generator/Driver.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Generator/Driver.cs b/src/Generator/Driver.cs index 7ccbc4f1..95c526bd 100644 --- a/src/Generator/Driver.cs +++ b/src/Generator/Driver.cs @@ -1,19 +1,19 @@ -using System.CodeDom.Compiler; +using System; +using System.CodeDom.Compiler; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Text; +using System.Reflection; +using Microsoft.CSharp; using CppSharp.AST; using CppSharp.Generators; using CppSharp.Generators.CLI; using CppSharp.Generators.CSharp; using CppSharp.Passes; using CppSharp.Types; -using Microsoft.CSharp; using CppSharp.Parser; -using System; -using System.Reflection; using CppSharp.Utils; namespace CppSharp