Fix SpamSum not being called when running under .NET Core 3.1.

This commit is contained in:
2023-09-21 14:06:27 +01:00
parent cee1610b71
commit 935d9f1068

View File

@@ -584,6 +584,9 @@ namespace AaruBenchmark
[Benchmark]
public void AaruNative() => Checksums.AaruNative.SpamSum();
#else
[Benchmark]
public void Aaru() => Checksums.Aaru.SpamSum();
[Benchmark]
public void Aaru6() => throw new NotImplementedException();