Browse Source

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

[3.2] Remove ChainTip copy constructor
Rémi Verschelde 4 năm trước cách đây
mục cha
commit
e30d4fc6ed
1 tập tin đã thay đổi với 0 bổ sung4 xóa
  1. 0 4
      scene/animation/skeleton_ik.h

+ 0 - 4
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 {