From 79952c5435b8372b25d5dadc4a737874ad2f280d Mon Sep 17 00:00:00 2001 From: Marcel Admiraal Date: Mon, 7 Dec 2020 12:32:49 +0000 Subject: [PATCH] Remove ChainTip copy constructor --- scene/animation/skeleton_ik.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scene/animation/skeleton_ik.h b/scene/animation/skeleton_ik.h index 9ae010dc4e..2bc7d762ab 100644 --- a/scene/animation/skeleton_ik.h +++ b/scene/animation/skeleton_ik.h @@ -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 {