From db9124f1de0478dcac525009b6f1589b44a7edd8 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Fri, 26 Apr 2019 16:59:41 -0700 Subject: Apply format changes from #2048 (#2059) Mass change to apply clang-format to everything. We are applying this in a PR by me so the (git) blame is all mine ;) but @aheejin did all the work to get clang-format set up and all the manual work to tidy up some things to make the output nicer in #2048 --- src/support/timing.h | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'src/support/timing.h') diff --git a/src/support/timing.h b/src/support/timing.h index a8de8de04..0b0430e24 100644 --- a/src/support/timing.h +++ b/src/support/timing.h @@ -33,23 +33,19 @@ class Timer { public: Timer(std::string name = "") : name(name) {} - void start() { - startTime = std::chrono::steady_clock::now(); - } + void start() { startTime = std::chrono::steady_clock::now(); } void stop() { - total += std::chrono::duration(std::chrono::steady_clock::now() - startTime).count(); + total += std::chrono::duration(std::chrono::steady_clock::now() - + startTime) + .count(); } - double getTotal() { - return total; - } + double getTotal() { return total; } - void dump() { - std::cerr << "\n"; - } + void dump() { std::cerr << "\n"; } }; } // namespace wasm -#endif // wasm_support_timing_h +#endif // wasm_support_timing_h -- cgit v1.2.3