Browse Source

Formatting changes.

pull/1/head
triton 12 years ago
parent
commit
f301189982
  1. 2
      src/Bridge/TranslationUnit.cs
  2. 1
      src/Bridge/Type.cs
  3. 4
      src/Generator/Driver.cs

2
src/Bridge/TranslationUnit.cs

@ -32,7 +32,7 @@ namespace CppSharp
} }
public bool IsSystemHeader { get; set; } public bool IsSystemHeader { get; set; }
/// Contains the path to the file. /// Contains the path to the file.
public string FilePath; public string FilePath;

1
src/Bridge/Type.cs

@ -519,5 +519,6 @@ namespace CppSharp
TypeQualifiers quals); TypeQualifiers quals);
T VisitDependentNameType(DependentNameType dependent, T VisitDependentNameType(DependentNameType dependent,
TypeQualifiers quals); TypeQualifiers quals);
} }
} }

4
src/Generator/Driver.cs

@ -1,11 +1,11 @@
using System.IO; using CppSharp.Generators;
using CppSharp.Generators;
using CppSharp.Generators.CLI; using CppSharp.Generators.CLI;
using CppSharp.Generators.CSharp; using CppSharp.Generators.CSharp;
using CppSharp.Passes; using CppSharp.Passes;
using CppSharp.Types; using CppSharp.Types;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO;
namespace CppSharp namespace CppSharp
{ {

Loading…
Cancel
Save