diff --git a/argus/src/core/signals/interpolation.rs b/argus/src/core/signals/interpolation.rs index 4119283..74dcf75 100644 --- a/argus/src/core/signals/interpolation.rs +++ b/argus/src/core/signals/interpolation.rs @@ -33,7 +33,7 @@ impl InterpolationMethod for Constant { /// If the signal does not have a value at a given point, a fixed value is returned pub struct DefaultFalse; -impl InterpolationMethod for DefaultFalse { +impl InterpolationMethod for DefaultFalse { fn at(a: &Sample, b: &Sample, time: Duration) -> Option { if time == b.time { Some(b.value.clone())