Skip to content

Commit 9e6b9b1

Browse files
authored
Change type to long for CLS Compliance
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 1957a07 commit 9e6b9b1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

HashifyNet/Algorithms/XxHash/XxHashConfig.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class XxHashConfig
4949
/// <value>
5050
/// The seed.
5151
/// </value>
52-
public ulong Seed { get; set; } = 0UL;
52+
public long Seed { get; set; } = 0UL;
5353

5454
/// <summary>
5555
/// Makes a deep clone of current instance.
@@ -62,4 +62,5 @@ public IXxHashConfig Clone() =>
6262
Seed = Seed
6363
};
6464
}
65-
}
65+
66+
}

0 commit comments

Comments
 (0)