diff options
author | Greg Clayton <gclayton@apple.com> | 2012-04-26 17:12:07 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-04-26 17:12:07 +0000 |
commit | 512034b8bd9fb90cc559863399d9533f135683b5 (patch) | |
tree | 1ba4d4a320fda83bc91c6e2a46e6d894bb7097f3 /lldb/source/Core/Timer.cpp | |
parent | caca09b628bcbf93136e40f234095cba4341aed1 (diff) | |
download | bcm5719-llvm-512034b8bd9fb90cc559863399d9533f135683b5.tar.gz bcm5719-llvm-512034b8bd9fb90cc559863399d9533f135683b5.zip |
Patch from Filipe Cabecinhas.
llvm-svn: 155642
Diffstat (limited to 'lldb/source/Core/Timer.cpp')
-rw-r--r-- | lldb/source/Core/Timer.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Core/Timer.cpp b/lldb/source/Core/Timer.cpp index dd37d79e5fd..a5747ce17f4 100644 --- a/lldb/source/Core/Timer.cpp +++ b/lldb/source/Core/Timer.cpp @@ -116,12 +116,10 @@ Timer::~Timer() 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()) { |