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

It looks like the compilation is not happening against the C++11 (or above) standard, even though the package's CMakeLists.txt file explicitly specifies the standard. Does your compiler support that standard?

Maybe adding this snippet after line 3 of the CMakeLists.txt file may help:

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")