Fix extra semicolon warning#26
Conversation
|
Thank you for the patch. I applied a similar in ros/ros_comm#817. |
|
I'm a little bit confused. The changelog says that the fix went into v0.5.5, released on 2016-06-27. However, the currently distributed ros-jade-gencpp debian package is still version |
|
Jade has not been synced in a while due to regressions. You can see the current status of packages on the status page: http://repositories.ros.org/status_page/ros_jade_default.html?q=gencpp There's a regression in MoveIt that needs to be fixed: http://repositories.ros.org/status_page/ros_jade_default.html?q=REGRESSION The latest info on Moveit release planning I think is here: moveit/moveit#22 |
When compiling packages that include generated message headers with
-Wpedantic, the warningis generated by GCC 4.9.3, 5.3.0, and 6.1.1. This is because
ROS_DECLARE_ALLINONE_SERIALIZERis defined as:So the
;after insertingROS_DECLARE_ALLINONE_SERIALIZERis clearly superfluous.Don't know if there are other places where this needs to be fixed, too. Maybe here?