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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-09-19 12:11:39 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-09-19 12:11:39 +0300
commit340527cd37ad8b2be0285ed4561d15f0f39bc5be (patch)
treeb45bc7dae17c7c1fadbca6d8890361f938ce017b /source/blender/modifiers
parent71d18f59a34cd792514e1c9e43b834cd8dc1b4af (diff)
Fix unused var in case Alembic is not enabled, in own previous commit.
Sorry for the noise...
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_meshsequencecache.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_meshsequencecache.c b/source/blender/modifiers/intern/MOD_meshsequencecache.c
index b1c6268649a..4b7b4f63dde 100644
--- a/source/blender/modifiers/intern/MOD_meshsequencecache.c
+++ b/source/blender/modifiers/intern/MOD_meshsequencecache.c
@@ -159,6 +159,7 @@ static bool dependsOnTime(ModifierData *md)
MeshSeqCacheModifierData *mcmd = (MeshSeqCacheModifierData *) md;
return (mcmd->cache_file != NULL);
#else
+ UNUSED_VARS(md);
return false;
#endif
}