From fe0ee213928ea80f0d109889ef960b29f127491e Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Mon, 6 Feb 2017 20:42:37 +0000 Subject: [PATCH] Remove and sort usings. --- src/CppParser/ParserGen/ParserGen.cs | 3 +-- src/Generator/Driver.cs | 7 +++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/CppParser/ParserGen/ParserGen.cs b/src/CppParser/ParserGen/ParserGen.cs index 899ba72f..80983176 100644 --- a/src/CppParser/ParserGen/ParserGen.cs +++ b/src/CppParser/ParserGen/ParserGen.cs @@ -4,10 +4,9 @@ using System.IO; using System.Linq; using CppSharp.AST; using CppSharp.Generators; +using CppSharp.Parser; using CppSharp.Passes; -using CppSharp.Types; using CppAbi = CppSharp.Parser.AST.CppAbi; -using CppSharp.Parser; namespace CppSharp { diff --git a/src/Generator/Driver.cs b/src/Generator/Driver.cs index f0ede27f..8e86cda2 100644 --- a/src/Generator/Driver.cs +++ b/src/Generator/Driver.cs @@ -4,17 +4,16 @@ using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; -using System.Text; using System.Reflection; -using Microsoft.CSharp; +using System.Text; using CppSharp.AST; using CppSharp.Generators; using CppSharp.Generators.CLI; using CppSharp.Generators.CSharp; -using CppSharp.Passes; -using CppSharp.Types; using CppSharp.Parser; +using CppSharp.Passes; using CppSharp.Utils; +using Microsoft.CSharp; namespace CppSharp {