Open Dale-Koenig opened 4 years ago
@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 :-( But I see this commit you are referring to. Can you create a PR to backport that to melodic-devel and the other requested changes?
@Dale-Koenig I believe that the master branch of moveit grasps has been patched. Re-open if I am wrong about this
@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!
Can you create a PR to backport that to melodic-devel and the other requested changes?
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
?