浏览代码

Remove ChainTip copy constructor

Marcel Admiraal 4 年之前
父节点
当前提交
3e1c540a6e
共有 1 个文件被更改,包括 0 次插入4 次删除
  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 {