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_smooth.c')
-rw-r--r--source/blender/modifiers/intern/MOD_smooth.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/source/blender/modifiers/intern/MOD_smooth.c b/source/blender/modifiers/intern/MOD_smooth.c
index b905e0f8118..ace5a95cd22 100644
--- a/source/blender/modifiers/intern/MOD_smooth.c
+++ b/source/blender/modifiers/intern/MOD_smooth.c
@@ -58,15 +58,6 @@ static void initData(ModifierData *md)
smd->defgrp_name[0] = '\0';
}
-static void copyData(ModifierData *md, ModifierData *target)
-{
-#if 0
- SmoothModifierData *smd = (SmoothModifierData *) md;
- SmoothModifierData *tsmd = (SmoothModifierData *) target;
-#endif
- modifier_copyData_generic(md, target);
-}
-
static bool isDisabled(ModifierData *md, int UNUSED(useRenderParams))
{
SmoothModifierData *smd = (SmoothModifierData *) md;
@@ -250,7 +241,7 @@ ModifierTypeInfo modifierType_Smooth = {
eModifierTypeFlag_AcceptsCVs |
eModifierTypeFlag_SupportsEditmode,
- /* copyData */ copyData,
+ /* copyData */ modifier_copyData_generic,
/* deformVerts_DM */ deformVerts,
/* deformMatrices_DM */ NULL,