-
Notifications
You must be signed in to change notification settings - Fork 243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
generateEmptyPose
suddenly removed
#148
Comments
@davetcoleman @mlautman There are several people complaining about problems related to this in the Moveit Grasps repo. |
Hi @Dale-Koenig , I'm not really involved with development anymore :-( |
@Dale-Koenig I believe that the master branch of moveit grasps has been patched. Re-open if I am wrong about this |
The problem is when using melodic branches. With both on master it is fine, but the melodic branches are incompatible |
Sorry for the confusion!
|
static void generateEmptyPose(geometry_msgs::Pose& pose);
was removed in the latest master without deprecating it. This caused a few problems (it was used, for example, in moveit grasps). However, any active projects using the master branch have likely already updated, or are not using the function to begin with, so I am not sure it is worth putting back in.That said, the sudden removal causes some complications with backwards compatibility, because the replacement
static geometry_msgs::Pose getIdentityPose();
did not exist in the preivous release. Therefore, repositories usingmaster
will not compile withmelodic-devel
and vice versa. Perhaps we could add instatic geometry_msgs::Pose getIdentityPose();
tomelodic-devel
, and add a deprecated attribute togenerateEmptyPose
?The text was updated successfully, but these errors were encountered: