Skip to content

Commit d7aefe2

Browse files
Update orocos_kdl/src/chainiksolvervel_pinv.cpp
optimize indexing Co-authored-by: Matthijs van der Burgh <[email protected]>
1 parent d2c2bec commit d7aefe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orocos_kdl/src/chainiksolvervel_pinv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ namespace KDL
8080
{
8181
if (Sout.rows() != Smaxtomin.rows())
8282
return (error = E_SIZE_MISMATCH);
83-
for (unsigned int i=0;i<Sout.rows();i++)
83+
for (unsigned int i=0; i<Sout.rows(); ++i)
8484
Sout(i)=Smaxtomin(i);
8585
return (error = E_NOERROR);
8686
}

0 commit comments

Comments
 (0)