Skip to content

Commit

Permalink
Suppress -Wformat= warning
Browse files Browse the repository at this point in the history
  • Loading branch information
RoboticsYY authored and henningkayser committed Nov 13, 2019
1 parent 015cb7c commit d8e6f94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moveit_core/distance_field/test/test_distance_field.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ TEST(TestSignedPropagationDistanceField, TestPerformance)

dt = std::chrono::system_clock::now();
worstdfu.addPointsToField(bad_vec);
auto wd = std::chrono::system_clock::now() - dt;
std::chrono::duration<double> wd = std::chrono::system_clock::now() - dt;
printf("Time for unsigned adding %u uniform points is %g average %g\n", (unsigned int)bad_vec.size(), wd.count(),
wd.count() / (bad_vec.size() * 1.0));
dt = std::chrono::system_clock::now();
Expand Down

0 comments on commit d8e6f94

Please sign in to comment.