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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-06-22 16:21:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-22 16:23:56 +0300
commit3c828c29b34976211f797c422dd039d5e9fbaac4 (patch)
tree148b1110c1c651403ca64b72a7f63782e8b8a90e /source
parent888fb065a4c2494eb3ec94f734194843d7b03118 (diff)
Cleanup: unused value
Diffstat (limited to 'source')
-rw-r--r--source/blender/modifiers/intern/MOD_ocean.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_ocean.c b/source/blender/modifiers/intern/MOD_ocean.c
index 2de737129fa..702e557ccb1 100644
--- a/source/blender/modifiers/intern/MOD_ocean.c
+++ b/source/blender/modifiers/intern/MOD_ocean.c
@@ -549,12 +549,11 @@ static DerivedMesh *doOcean(
}
#else /* WITH_OCEANSIM */
static DerivedMesh *doOcean(
- ModifierData *md, Scene *scene, Object *UNUSED(ob),
+ ModifierData *UNUSED(md), Scene *UNUSED(scene), Object *UNUSED(ob),
DerivedMesh *derivedData,
int UNUSED(useRenderParams))
{
/* unused */
- (void)md;
return derivedData;
}
#endif /* WITH_OCEANSIM */