Skip to content

Commit

Permalink
Merge pull request #25 from VictorLamoine/develop
Browse files Browse the repository at this point in the history
Fix compilation with c++11
  • Loading branch information
T045T committed Nov 15, 2017
2 parents 6d03ae7 + 3163454 commit a3c7d86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tf_web_republisher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class TFRepublisher



void cancelCB(GoalHandle& gh)
void cancelCB(GoalHandle gh)
{
boost::mutex::scoped_lock l(goals_mutex_);

Expand Down Expand Up @@ -192,7 +192,7 @@ class TFRepublisher
}
}

void goalCB(GoalHandle& gh)
void goalCB(GoalHandle gh)
{
ROS_DEBUG("GoalHandle request received");

Expand Down

0 comments on commit a3c7d86

Please sign in to comment.