Skip to content

Commit

Permalink
Partially reverting PR - Removing readonly keyword, because it requir…
Browse files Browse the repository at this point in the history
…es C# 7.2 which might not be available to all users yet, that want to use RangeTree.
  • Loading branch information
apacha committed Apr 23, 2019
1 parent e2c5778 commit 1194a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RangeTree/RangeValuePair.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace RangeTree
/// Both values must be of the same type and comparable.
/// </summary>
/// <typeparam name="TKey">Type of the values.</typeparam>
public readonly struct RangeValuePair<TKey, TValue> : IEquatable<RangeValuePair<TKey, TValue>>
public struct RangeValuePair<TKey, TValue> : IEquatable<RangeValuePair<TKey, TValue>>
{
public TKey From { get; }
public TKey To { get; }
Expand Down

0 comments on commit 1194a6b

Please sign in to comment.