Remove default value from implementation file
authorLukáš Jiřiště <jiriste@icpf.cas.cz>
Tue, 10 Dec 2024 15:33:09 +0000 (16:33 +0100)
committerLukáš Jiřiště <jiriste@icpf.cas.cz>
Tue, 10 Dec 2024 15:33:09 +0000 (16:33 +0100)
It should only ever be in the header file.

Measurement.ino

index 5681b51e078045a40355c1aae88dfd19b20f94f7..a0a7622c375c502897710f02881dd201bc34263f 100644 (file)
@@ -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())