[Lldb-commits] [lldb] r155642 - /lldb/trunk/source/Core/Timer.cpp
Greg Clayton
gclayton at apple.com
Thu Apr 26 10:12:07 PDT 2012
Author: gclayton
Date: Thu Apr 26 12:12:07 2012
New Revision: 155642
URL: http://llvm.org/viewvc/llvm-project?rev=155642&view=rev
Log:
Patch from Filipe Cabecinhas.
Modified:
lldb/trunk/source/Core/Timer.cpp
Modified: lldb/trunk/source/Core/Timer.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Timer.cpp?rev=155642&r1=155641&r2=155642&view=diff
==============================================================================
--- lldb/trunk/source/Core/Timer.cpp (original)
+++ lldb/trunk/source/Core/Timer.cpp Thu Apr 26 12:12:07 2012
@@ -116,12 +116,10 @@
if (m_total_start.IsValid())
{
TimeValue stop_time = TimeValue::Now();
- bool notify = false;
if (m_total_start.IsValid())
{
m_total_ticks += (stop_time - m_total_start);
m_total_start.Clear();
- notify = true;
}
if (m_timer_start.IsValid())
{
More information about the lldb-commits
mailing list