Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/modifiers/intern/MOD_build.c')
-rw-r--r--source/blender/modifiers/intern/MOD_build.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/source/blender/modifiers/intern/MOD_build.c b/source/blender/modifiers/intern/MOD_build.c
index 048e9ce33c0..f9cd57cc460 100644
--- a/source/blender/modifiers/intern/MOD_build.c
+++ b/source/blender/modifiers/intern/MOD_build.c
@@ -66,15 +66,6 @@ static void initData(ModifierData *md)
bmd->length = 100.0;
}
-static void copyData(ModifierData *md, ModifierData *target)
-{
-#if 0
- BuildModifierData *bmd = (BuildModifierData *) md;
- BuildModifierData *tbmd = (BuildModifierData *) target;
-#endif
- modifier_copyData_generic(md, target);
-}
-
static bool dependsOnTime(ModifierData *UNUSED(md))
{
return true;
@@ -313,7 +304,8 @@ ModifierTypeInfo modifierType_Build = {
/* type */ eModifierTypeType_Nonconstructive,
/* flags */ eModifierTypeFlag_AcceptsMesh |
eModifierTypeFlag_AcceptsCVs,
- /* copyData */ copyData,
+
+ /* copyData */ modifier_copyData_generic,
/* deformVerts_DM */ NULL,
/* deformMatrices_DM */ NULL,