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>2015-05-12 23:10:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-05-12 23:10:49 +0300
commite4cd4c383f13eb9705d9f5d3536c0b2b72e727bd (patch)
treea96e9ad9cc93b360e4e0d04145508c7ad4c577fc /source/blender/depsgraph/intern/depsgraph_debug.cc
parent3160740421cfef1cee61478baadddd256af2dfca (diff)
Cleanup: style
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_debug.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_debug.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_debug.cc b/source/blender/depsgraph/intern/depsgraph_debug.cc
index c876640b462..7c044980d7f 100644
--- a/source/blender/depsgraph/intern/depsgraph_debug.cc
+++ b/source/blender/depsgraph/intern/depsgraph_debug.cc
@@ -917,14 +917,16 @@ DepsgraphStatsID *DepsgraphDebug::get_id_stats(ID *id, bool create)
return id_stats;
}
-DepsgraphStatsComponent *DepsgraphDebug::get_component_stats(DepsgraphStatsID *id_stats,
- const string &name,
- bool create)
+DepsgraphStatsComponent *DepsgraphDebug::get_component_stats(
+ DepsgraphStatsID *id_stats,
+ const string &name,
+ bool create)
{
DepsgraphStatsComponent *comp_stats;
for (comp_stats = (DepsgraphStatsComponent *)id_stats->components.first;
comp_stats != NULL;
- comp_stats = comp_stats->next) {
+ comp_stats = comp_stats->next)
+ {
if (STREQ(comp_stats->name, name.c_str()))
break;
}