This repository was archived by the owner on Nov 13, 2017. It is now read-only.

Description
I am getting the following error when destroying a MoveGroup object:
terminate called after throwing an instance of 'class_loader::LibraryUnloadException'
what(): Attempt to unload library that class_loader is unaware of.
Aborted (core dumped)
With the following trivial example:
#include <moveit/move_group_interface/move_group.h>
int main(int argc, char** argv)
{
ros::init(argc, argv, "test_motion");
moveit::planning_interface::MoveGroup moveGroup("manipulator");
}
Note that this message prints at the end of the MoveGroup Interface Tutorial, as well (https://github.com/ros-planning/moveit_pr2/blob/indigo-devel/pr2_moveit_tutorials/planning/src/move_group_interface_tutorial.cpp)