From 8b0bde6951076663951f42551ba7f6f46f2d906d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Luk=C3=A1=C5=A1=20Ji=C5=99i=C5=A1t=C4=9B?= Date: Tue, 10 Dec 2024 16:33:09 +0100 Subject: [PATCH] Remove default value from implementation file It should only ever be in the header file. --- Measurement.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Measurement.ino b/Measurement.ino index 5681b51..a0a7622 100644 --- a/Measurement.ino +++ b/Measurement.ino @@ -71,7 +71,7 @@ void Measurement::clear() // // Using this we can then numerically optimize a. Interval halving is used // because it is foolproof and the evaluation is not computationally demanding. -int Measurement::wait_for_equilibrium(float threshold = 0.01) +int Measurement::wait_for_equilibrium(float threshold) { clear(); while (m_size < 20 || threshold < calc_equilibrium_dist()) -- 2.30.2