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>2019-03-06 02:51:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-06 02:51:11 +0300
commit85b667716aab76e08a5387e03197c7a068ba7a58 (patch)
tree0890a3593b56305ef5261cc176ce7c3f5e1ab527 /source/blender/depsgraph
parent104d9b475d10afb300699596373b06f26308624f (diff)
Cleanup: style
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder.cc b/source/blender/depsgraph/intern/builder/deg_builder.cc
index ef3cf63e032..ca454610f1e 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder.cc
@@ -83,7 +83,7 @@ void visibility_animated_check_cb(ID * /*id*/, FCurve *fcu, void *user_data)
bool is_object_visibility_animated(const Depsgraph *graph, Object *object)
{
- AnimData* anim_data = BKE_animdata_from_id(&object->id);
+ AnimData *anim_data = BKE_animdata_from_id(&object->id);
if (anim_data == NULL) {
return false;
}