From 42a6aa323d747fadbe96f26f736c897c91108347 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 26 Sep 2020 22:43:41 +0200 Subject: [PATCH] Fixed missed default token --- FastRng/Double/Distributions/StudentT.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FastRng/Double/Distributions/StudentT.cs b/FastRng/Double/Distributions/StudentT.cs index c32ec2b..1ee1ac9 100644 --- a/FastRng/Double/Distributions/StudentT.cs +++ b/FastRng/Double/Distributions/StudentT.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;