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