From b7c8cd2fe6fc43d0278a519e5f5bf2b319dc2718 Mon Sep 17 00:00:00 2001 From: Mikhail Gorbushin Date: Fri, 29 Nov 2019 15:02:36 +0300 Subject: [PATCH] [base] Fix ScopedTimerWithLog --- base/timer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/timer.cpp b/base/timer.cpp index 6912d537d8..c4854b156f 100644 --- a/base/timer.cpp +++ b/base/timer.cpp @@ -222,12 +222,12 @@ ScopedTimerWithLog::~ScopedTimerWithLog() case Measure::MilliSeconds: { LOG(LINFO, (m_name, "time:", m_timer.ElapsedMillis(), "ms")); - break; + return; } case Measure::Seconds: { LOG(LINFO, (m_name, "time:", m_timer.ElapsedSeconds(), "s")); - break; + return; } } UNREACHABLE();