Skip to content

Commit 634cc39

Browse files
author
earlaud
committed
Fix formatting
1 parent 23d2265 commit 634cc39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interpolator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ namespace simple_mpc
8888
{
8989
// Compute the time knot corresponding to the current delay
9090
size_t step_nb = static_cast<size_t>(delay / timestep);
91-
step_nb = std::clamp(step_nb, 0UL, vs.size()-1);
91+
step_nb = std::clamp(step_nb, 0UL, vs.size() - 1);
9292

9393
// Set the output arg
9494
v_interp = vs[step_nb];

0 commit comments

Comments
 (0)