Fix compiler error when building without USD and alembic

This commit is contained in:
Julian Eisel 2022-04-01 20:10:13 +02:00
parent 65dcb5ebd3
commit 999f6526b1
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ static bool dependsOnTime(Scene *scene, ModifierData *md)
return (mcmd->cache_file != nullptr) &&
!BKE_cache_file_uses_render_procedural(mcmd->cache_file, scene);
#else
UNUSED_VARS(scene, md, dag_eval_mode);
UNUSED_VARS(scene, md);
return false;
#endif
}