Ver Fonte

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

Remove ChainTip copy constructor
Rémi Verschelde há 4 anos atrás
pai
commit
a32d6d2800
1 ficheiros alterados com 0 adições e 4 exclusões
  1. 0 4
      scene/3d/skeleton_ik_3d.h

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