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:
authorCampbell Barton <ideasman42@gmail.com>2018-04-19 19:07:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-19 19:07:06 +0300
commitd03024f6b33043c03371efeb04641f4cfcf7cc40 (patch)
tree32f332af92ebec45c0aadc78d7f75d6a3675b2c1 /source/blender/modifiers/intern/MOD_uvproject.c
parent51b796ff1528c52cc8b4079fab1003671652a4d9 (diff)
Cleanup: warnings
Diffstat (limited to 'source/blender/modifiers/intern/MOD_uvproject.c')
-rw-r--r--source/blender/modifiers/intern/MOD_uvproject.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_uvproject.c b/source/blender/modifiers/intern/MOD_uvproject.c
index cdad0a46dde..fba0663571e 100644
--- a/source/blender/modifiers/intern/MOD_uvproject.c
+++ b/source/blender/modifiers/intern/MOD_uvproject.c
@@ -71,8 +71,8 @@ static void copyData(ModifierData *md, ModifierData *target)
{
#if 0
UVProjectModifierData *umd = (UVProjectModifierData *) md;
-#endif
UVProjectModifierData *tumd = (UVProjectModifierData *) target;
+#endif
modifier_copyData_generic(md, target);
}
@@ -100,7 +100,9 @@ static void foreachObjectLink(ModifierData *md, Object *ob,
static void foreachIDLink(ModifierData *md, Object *ob,
IDWalkFunc walk, void *userData)
{
+#if 0
UVProjectModifierData *umd = (UVProjectModifierData *) md;
+#endif
foreachObjectLink(md, ob, (ObjectWalkFunc)walk, userData);
}