From fc55a5521fd48f2f86e47953331020198187128d Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 24 Nov 2015 07:54:23 -0500 Subject: [PATCH] Context: Removed parentheses for readability --- src/Context.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Context.cpp b/src/Context.cpp index 40f825ea1..676c1272f 100644 --- a/src/Context.cpp +++ b/src/Context.cpp @@ -339,15 +339,15 @@ int Context::run () << " sort:" << timer_sort.total () << " render:" << timer_render.total () << " hooks:" << timer_hooks.total () - << " other:" << timer_total.total () - - (timer_init.total () + - timer_load.total () + - timer_gc.total () + - timer_filter.total () + - timer_commit.total () + - timer_sort.total () + - timer_render.total () + - timer_hooks.total ()) + << " other:" << timer_total.total () - + timer_init.total () - + timer_load.total () - + timer_gc.total () - + timer_filter.total () - + timer_commit.total () - + timer_sort.total () - + timer_render.total () - + timer_hooks.total () << " total:" << timer_total.total () << "\n"; debug (s.str ());