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 {