Skip to content

Commit

Permalink
fix codecheck errors
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Chen <[email protected]>
  • Loading branch information
iche033 committed Feb 12, 2022
1 parent 9a1ddd9 commit 8d365d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/systems/trajectory_follower/TrajectoryFollower.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*
*/

#include <string>
#include <vector>

#include <ignition/common/Profiler.hh>
Expand Down Expand Up @@ -208,7 +209,7 @@ void TrajectoryFollowerPrivate::Load(const EntityComponentManager &_ecm,

// Parse the optional <loop> element.
if (_sdf->HasElement("loop"))
this->loopForever = _sdf->Get<bool>("loop");;
this->loopForever = _sdf->Get<bool>("loop");

// Parse the optional <force> element.
if (_sdf->HasElement("force"))
Expand Down

0 comments on commit 8d365d0

Please sign in to comment.