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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2016-10-30 05:42:46 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2016-10-30 05:42:46 +0300
commitce785868a56a1446750f5af1779f7623ca462ec2 (patch)
treef7bbf34ae713f1ec061cc4b634ebf4484474499d /source/blender/blenkernel/intern/constraint.c
parentb2974d7ab79a257f8628c24c05d43da25791018d (diff)
Fix compile errors for when WITH_ALEMBIC is OFF.
Diffstat (limited to 'source/blender/blenkernel/intern/constraint.c')
-rw-r--r--source/blender/blenkernel/intern/constraint.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c
index c7750707cc4..b85f1b838ff 100644
--- a/source/blender/blenkernel/intern/constraint.c
+++ b/source/blender/blenkernel/intern/constraint.c
@@ -4401,7 +4401,9 @@ static void transformcache_free(bConstraint *con)
}
if (data->reader) {
+#ifdef WITH_ALEMBIC
CacheReader_free(data->reader);
+#endif
}
}