ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Okay, I got it. You have to fix following

boost::this_thread::sleep(boost::posix_time::milliseconds(sleep_sec * 1e-6));

to

boost::this_thread::sleep(boost::posix_time::milliseconds(int(sleep_sec * 1e-6)));

inside the ./src/jsk_common/jsk_topic_tools/src/topic_buffer_server.cpp file.