From ac53538207966446c36b2d4b9177edc48eec843c Mon Sep 17 00:00:00 2001 From: Joeri Exelmans Date: Tue, 4 Nov 2025 10:51:34 +0100 Subject: [PATCH] fix build --- argus/src/core/signals/interpolation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())