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-11-27 06:54:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-27 06:54:53 +0300
commit4fd99c949587781529a998d5baa2870c93cd80b4 (patch)
tree2945796a705c76acb608b9d389f9e0a4564e462a /source/blender/depsgraph/intern/depsgraph_query.cc
parentb9e10273e0412f357698462247d595d54043234e (diff)
Cleanup: spelling, clang-format
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_query.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_query.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_query.cc b/source/blender/depsgraph/intern/depsgraph_query.cc
index 8556a351e2b..3b0f49e0150 100644
--- a/source/blender/depsgraph/intern/depsgraph_query.cc
+++ b/source/blender/depsgraph/intern/depsgraph_query.cc
@@ -154,8 +154,7 @@ Scene *DEG_get_evaluated_scene(const Depsgraph *graph)
const DEG::Depsgraph *deg_graph = reinterpret_cast<const DEG::Depsgraph *>(graph);
Scene *scene_cow = deg_graph->scene_cow;
/* TODO(sergey): Shall we expand data-block here? Or is it OK to assume
- * that calleer is OK with just a pointer in case scene is not updated
- * yet? */
+ * that caller is OK with just a pointer in case scene is not updated yet? */
BLI_assert(scene_cow != NULL && DEG::deg_copy_on_write_is_expanded(&scene_cow->id));
return scene_cow;
}