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

Revision history [back]

This is coming from you piping std::cout back into std::cout, as e.g. here:

std::cout << "defining the vectors \n" << std::cout;

I guess you mean

std::cout << "defining the vectors \n" << std::endl;