diff --git a/ICSharpCode.NRefactory.CSharp/Ast/Statements/EmptyStatement.cs b/ICSharpCode.NRefactory.CSharp/Ast/Statements/EmptyStatement.cs index e8c460913e..f33600f8ac 100644 --- a/ICSharpCode.NRefactory.CSharp/Ast/Statements/EmptyStatement.cs +++ b/ICSharpCode.NRefactory.CSharp/Ast/Statements/EmptyStatement.cs @@ -44,7 +44,7 @@ namespace ICSharpCode.NRefactory.CSharp public override TextLocation EndLocation { get { - return new TextLocation (Location.Line, Location.Column); + return new TextLocation (Location.Line, Location.Column + 1); } }