Skip to content

Commit

Permalink
delete IKCache copy constructor (moveit#1750)
Browse files Browse the repository at this point in the history
It never existed, because the class contains a mutex object (not copyable).
clang complained about this discrepancy.
  • Loading branch information
v4hn committed Mar 31, 2020
1 parent 0f6ee6f commit e47aed5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class IKCache

IKCache();
~IKCache();
IKCache(const IKCache&) = default;
IKCache(const IKCache&) = delete;

/** get the entry from the IK cache that best matches a given pose */
const IKEntry& getBestApproximateIKSolution(const Pose& pose) const;
Expand Down

0 comments on commit e47aed5

Please sign in to comment.