From 5626f7eb93529beb3c9f8777cec38574d1d05794 Mon Sep 17 00:00:00 2001 From: cont-integration <CI@iri.upc.edu> Date: Wed, 30 Apr 2025 18:03:17 +0200 Subject: [PATCH] [skip ci] applied clang format --- src/capture/capture_motion.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/capture/capture_motion.cpp b/src/capture/capture_motion.cpp index 78ecbe638..9158849ff 100644 --- a/src/capture/capture_motion.cpp +++ b/src/capture/capture_motion.cpp @@ -65,7 +65,8 @@ bool CaptureMotion::containsTimeStamp(const TimeStamp& _ts, double _time_toleran { assert(_ts.ok() and this->time_stamp_.ok()); assert(this->time_stamp_ == this->getBuffer().back().ts_ and - "CaptureMotion::containsTimeStamp: The time stamp of the capture is not equal to the last motion in the buffer"); + "CaptureMotion::containsTimeStamp: The time stamp of the capture is not equal to the last motion in the " + "buffer"); // the same capture is within tolerance if (this->time_stamp_ - _time_tolerance <= _ts && _ts <= this->time_stamp_ + _time_tolerance) return true; -- GitLab