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

lizyazpin's profile - activity

2021-01-05 09:28:19 -0500 received badge  Necromancer (source)
2021-01-05 09:28:19 -0500 received badge  Teacher (source)
2016-07-27 14:52:47 -0500 commented answer How to make ROS Indigo work with Gazebo 4?

I made work Gazebo 2 with DRCsim 3.2, I looked and tried versions until it worked. I hope it helps. To remove Gazebo 4 you can use --purge and then install with 'sudo apt-get install ros-indigo-gazebo-ros'.

2013-11-11 09:06:34 -0500 asked a question Unordered_map in ROS

I am trying to use the unordered_map library, specifically the .emplace function. I can create an instance of an unordered_map, but the compiler generates the error 'class std::unordered_map<mytype, float=""> has no member named 'emplace'.

2013-11-10 22:39:50 -0500 answered a question utm_odometry_node fails to build

I had the same problem, one of my friends told me I was missing some linker dependencies to ros::serialization::throwStreamOverrun().

And also that I needed to add the package that contains ros::serialization to the build_dependencies and the run_dependencies in the package.xml and also to the CMakeLists.txt.

In the CMake-file the build_dependencies are in the line that starts with find_package(catkin REQUIRED COMPONENTS and the run_dependencies usually are in the catkin_package( ... block. Also, in the line target_link_libraries(your_executable ${catkin_LIBRARIES}) that belongs to your executable you might need to add the ${catkin_LIBRARIES} if it is not already there.

For me that worked and hope for you also.