Browse Source

Move SourceLocation to CppSharp.AST.

pull/696/head
Joao Matos 9 years ago
parent
commit
65fc10680a
  1. 2
      src/AST/SourceLocation.cs
  2. 1
      src/Parser/ASTConverter.cs

2
src/AST/SourceLocation.cs

@ -1,4 +1,4 @@
namespace CppSharp namespace CppSharp.AST
{ {
/// <summary> /// <summary>
/// Encodes a location in the source. /// Encodes a location in the source.

1
src/Parser/ASTConverter.cs

@ -1,5 +1,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using SourceLocation = CppSharp.AST.SourceLocation;
using CppSharp.Parser.AST; using CppSharp.Parser.AST;
namespace CppSharp namespace CppSharp

Loading…
Cancel
Save