Skip to content

Commit

Permalink
fix compiler warnings about unused variables (#1428) (#1610)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas authored Feb 1, 2019
1 parent 801b9c0 commit dad274c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions clients/roscpp/src/libros/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -604,8 +604,6 @@ void shutdown()
XMLRPCManager::instance()->shutdown();
}

WallTime end = WallTime::now();

g_started = false;
g_ok = false;
Time::shutdown();
Expand Down
1 change: 1 addition & 0 deletions test/test_rosbag/test/test_bag.cpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@ TEST(rosbag, bad_topic_query_works) {

rosbag::View view(bag, rosbag::TopicQuery(t));
foreach(rosbag::MessageInstance const m, view) {
(void)m;
FAIL();
}

Expand Down

0 comments on commit dad274c

Please sign in to comment.