From 0973839f48dd614a2137019e07f62937396c6efa Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 26 Sep 2020 22:26:58 +0200 Subject: [PATCH] Fixed missed default token --- FastRng/Double/Distributions/LogNormal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FastRng/Double/Distributions/LogNormal.cs b/FastRng/Double/Distributions/LogNormal.cs index cd23685..3612552 100644 --- a/FastRng/Double/Distributions/LogNormal.cs +++ b/FastRng/Double/Distributions/LogNormal.cs @@ -23,7 +23,7 @@ namespace FastRng.Double.Distributions } } - public async ValueTask GetDistributedValue(CancellationToken token) + public async ValueTask GetDistributedValue(CancellationToken token = default) { if (this.Random == null) return System.Double.NaN;