Skip to content
This repository has been archived by the owner on Dec 2, 2021. It is now read-only.

fix: core dump in some Ubuntu 16.04 systems #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kuka_arm/include/kuka_arm/trajectory_sampler.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class TrajectorySampler
bool OpenGripper();
bool CloseGripper();

bool SetupCollisionObject(const std::string &object_id,
void SetupCollisionObject(const std::string &object_id,
const std::string &mesh_path,
const geometry_msgs::Pose &object_pose,
moveit_msgs::CollisionObject &collision_object);
Expand Down
2 changes: 1 addition & 1 deletion kuka_arm/src/trajectory_sampler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ bool TrajectorySampler::CloseGripper()
return success;
}

bool TrajectorySampler::SetupCollisionObject(const std::string &object_id,
void TrajectorySampler::SetupCollisionObject(const std::string &object_id,
const std::string &mesh_path,
const geometry_msgs::Pose &object_pose,
moveit_msgs::CollisionObject &collision_object)
Expand Down