From 3a020ddc74e685e0db8b409501bca577775823db Mon Sep 17 00:00:00 2001 From: Vanya Belyaev Date: Mon, 4 Dec 2023 08:59:46 +0100 Subject: [PATCH] fix? --- source/src/ValueWithError.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/src/ValueWithError.cpp b/source/src/ValueWithError.cpp index 0f914283..68e1c8f1 100644 --- a/source/src/ValueWithError.cpp +++ b/source/src/ValueWithError.cpp @@ -3291,7 +3291,7 @@ namespace const Ostap::Math::ValueWithError& b , const long double alpha ) { - const double beta = 1.0L - alpha ; + const long double beta = 1.0L - alpha ; // const double am = a.value() ; const double bm = b.value() ;