Skip to content

Commit

Permalink
Merge pull request #114 from nobleo/cleanup/removed-nolint
Browse files Browse the repository at this point in the history
Removed NOLINT.
  • Loading branch information
lewie-donckers authored Mar 7, 2022
2 parents 08b7a12 + efcda2c commit 22e3cb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/path_tracking_pid/path_tracking_pid_local_planner.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class TrackingPidLocalPlanner : public mbf_costmap_core::CostmapController,
*/
uint32_t computeVelocityCommands(
const geometry_msgs::PoseStamped & pose, const geometry_msgs::TwistStamped & velocity,
geometry_msgs::TwistStamped & cmd_vel, std::string & message) override; // NOLINT
geometry_msgs::TwistStamped & cmd_vel, std::string & message) override;

/**
* @brief Returns true, if the goal is reached. Currently does not respect the parameters given.
Expand All @@ -93,7 +93,7 @@ class TrackingPidLocalPlanner : public mbf_costmap_core::CostmapController,
* @param cmd_vel Output the velocity command
* @return true if succeded.
*/
bool computeVelocityCommands(geometry_msgs::Twist & cmd_vel); // NOLINT
bool computeVelocityCommands(geometry_msgs::Twist & cmd_vel);

/**
* @brief Returns true, if the goal is reached.
Expand Down

0 comments on commit 22e3cb0

Please sign in to comment.