Skip to content

Commit

Permalink
Methods can't be const because of mutex
Browse files Browse the repository at this point in the history
  • Loading branch information
joaocgreis committed Sep 28, 2014
1 parent cacb099 commit 20d962c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/roah_rsbb.h
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ namespace roah_rsbb
}

std::shared_ptr<const roah_rsbb_msgs::RobotBeacon>
last_robot_beacon() const
last_robot_beacon()
{
std::shared_ptr<const roah_rsbb_msgs::RobotBeacon> ret;
{
Expand All @@ -216,7 +216,7 @@ namespace roah_rsbb
}

std::shared_ptr<const roah_rsbb_msgs::RoahRsbbBeacon>
last_rsbb_beacon() const
last_rsbb_beacon()
{
std::shared_ptr<const roah_rsbb_msgs::RoahRsbbBeacon> ret;
{
Expand Down Expand Up @@ -299,7 +299,7 @@ namespace roah_rsbb
}

std::shared_ptr<const roah_rsbb_msgs::BenchmarkState>
last_benchmark_state() const
last_benchmark_state()
{
std::shared_ptr<const roah_rsbb_msgs::BenchmarkState> ret;
{
Expand All @@ -322,7 +322,7 @@ namespace roah_rsbb
}

std::shared_ptr<const roah_rsbb_msgs::RobotState>
last_robot_state() const
last_robot_state()
{
std::shared_ptr<const roah_rsbb_msgs::RobotState> ret;
{
Expand Down

0 comments on commit 20d962c

Please sign in to comment.