diff --git a/src/Bridge/TranslationUnit.cs b/src/Bridge/TranslationUnit.cs index 461a609e..0af49865 100644 --- a/src/Bridge/TranslationUnit.cs +++ b/src/Bridge/TranslationUnit.cs @@ -32,7 +32,7 @@ namespace CppSharp } public bool IsSystemHeader { get; set; } - + /// Contains the path to the file. public string FilePath; diff --git a/src/Bridge/Type.cs b/src/Bridge/Type.cs index 7781267b..942d32c2 100644 --- a/src/Bridge/Type.cs +++ b/src/Bridge/Type.cs @@ -519,5 +519,6 @@ namespace CppSharp TypeQualifiers quals); T VisitDependentNameType(DependentNameType dependent, TypeQualifiers quals); + } } \ No newline at end of file diff --git a/src/Generator/Driver.cs b/src/Generator/Driver.cs index a12ef506..d20dd7e5 100644 --- a/src/Generator/Driver.cs +++ b/src/Generator/Driver.cs @@ -1,11 +1,11 @@ -using System.IO; -using CppSharp.Generators; +using CppSharp.Generators; using CppSharp.Generators.CLI; using CppSharp.Generators.CSharp; using CppSharp.Passes; using CppSharp.Types; using System; using System.Collections.Generic; +using System.IO; namespace CppSharp {