From 788bcbc91d23f9c320bf07d43494108dac187062 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 26 Sep 2020 22:57:30 +0200 Subject: [PATCH] Fixed missed default token --- FastRng/Double/Distributions/Weibull.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FastRng/Double/Distributions/Weibull.cs b/FastRng/Double/Distributions/Weibull.cs index 604903c..fdc0c32 100644 --- a/FastRng/Double/Distributions/Weibull.cs +++ b/FastRng/Double/Distributions/Weibull.cs @@ -35,7 +35,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;