Merge pull request #44167 from madmiraal/remove-chain-tip-copy-constructor-3.2

[3.2] Remove ChainTip copy constructor
This commit is contained in:
Rémi Verschelde 2020-12-08 09:40:20 +01:00 committed by GitHub
commit e30d4fc6ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,10 +84,6 @@ class FabrikInverseKinematic {
ChainTip(ChainItem *p_chain_item, const EndEffector *p_end_effector) :
chain_item(p_chain_item),
end_effector(p_end_effector) {}
ChainTip(const ChainTip &p_other_ct) :
chain_item(p_other_ct.chain_item),
end_effector(p_other_ct.end_effector) {}
};
struct Chain {