提交 b6680acb 编写于 作者: C CyrusNajmabadi

Fix hashcode.

上级 6adf3e5d
......@@ -43,7 +43,9 @@ public bool Equals(DocumentLocation obj)
public override int GetHashCode()
{
return Hash.Combine(this.Document.FilePath, this.SourceSpan.GetHashCode());
return Hash.Combine(
StringComparer.OrdinalIgnoreCase.GetHashCode(this.Document.FilePath),
this.SourceSpan.GetHashCode());
}
public int CompareTo(DocumentLocation other)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册