From 65fc10680afc0fba63948c6672fff18ca6bfa276 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Wed, 31 Aug 2016 15:58:59 +0100 Subject: [PATCH] Move SourceLocation to CppSharp.AST. --- src/AST/SourceLocation.cs | 2 +- src/Parser/ASTConverter.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/AST/SourceLocation.cs b/src/AST/SourceLocation.cs index fa40d89b..7d663ff6 100644 --- a/src/AST/SourceLocation.cs +++ b/src/AST/SourceLocation.cs @@ -1,4 +1,4 @@ -namespace CppSharp +namespace CppSharp.AST { /// /// Encodes a location in the source. diff --git a/src/Parser/ASTConverter.cs b/src/Parser/ASTConverter.cs index 3835ba53..828b923d 100644 --- a/src/Parser/ASTConverter.cs +++ b/src/Parser/ASTConverter.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using SourceLocation = CppSharp.AST.SourceLocation; using CppSharp.Parser.AST; namespace CppSharp