diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-07 12:29:29 +0000 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-07 12:29:29 +0000 |
commit | 3e1c540a6ec404928832649188910a41f38f65be (patch) | |
tree | 0b429cd3a3cc8b0e38518fea1cd68d6a684b07e7 /scene | |
parent | d834789f475d431b10dcaef8804cd75dcd8b47dd (diff) |
Remove ChainTip copy constructor
Diffstat (limited to 'scene')
-rw-r--r-- | scene/3d/skeleton_ik_3d.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scene/3d/skeleton_ik_3d.h b/scene/3d/skeleton_ik_3d.h index 80acc3e937..6c1db6dd33 100644 --- a/scene/3d/skeleton_ik_3d.h +++ b/scene/3d/skeleton_ik_3d.h @@ -76,10 +76,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 { |