From d3e954b7f9c8d309ab3719501235420f41ac917b Mon Sep 17 00:00:00 2001 From: Jorge Perez Date: Tue, 7 May 2024 17:07:51 -0300 Subject: [PATCH] fix linter Signed-off-by: Jorge Perez --- src/DopplerVelocityLog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DopplerVelocityLog.cc b/src/DopplerVelocityLog.cc index e5a4b73e..03ddaee9 100644 --- a/src/DopplerVelocityLog.cc +++ b/src/DopplerVelocityLog.cc @@ -1258,7 +1258,7 @@ namespace gz // Iterate over the beam solid angle in camera coordinates for (auto v = beamScanPatch.YMin(); v < beamScanPatch.YMax(); ++v) { - (void) _height; // Supress unused warning in variable used below + (void) _height; // Supress unused warning in variable used below assert(v >= 0 && v < static_cast(_height)); const gz::math::Angle inclination = v * intrinsics.step.Y() + intrinsics.offset.Y();