From 7d6a9b551759cf3f1cca0c6d8ecb1459d02dcc28 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 22 Apr 2019 12:20:14 +1000 Subject: Cleanup: style, use braces Add braces for modules already using braces almost everywhere. --- source/blender/depsgraph/intern/depsgraph_debug.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/blender/depsgraph/intern/depsgraph_debug.cc') diff --git a/source/blender/depsgraph/intern/depsgraph_debug.cc b/source/blender/depsgraph/intern/depsgraph_debug.cc index e795bed144d..6253d31b8aa 100644 --- a/source/blender/depsgraph/intern/depsgraph_debug.cc +++ b/source/blender/depsgraph/intern/depsgraph_debug.cc @@ -237,10 +237,12 @@ void DEG_stats_simple(const Depsgraph *graph, tot_rels += time_source->inlinks.size(); } - if (r_relations) + if (r_relations) { *r_relations = tot_rels; - if (r_outer) + } + if (r_outer) { *r_outer = tot_outer; + } } } -- cgit v1.2.3