[Lldb-commits] [lldb] r218844 - Remove unused variable.
Eric Christopher
echristo at gmail.com
Wed Oct 1 17:52:57 PDT 2014
Author: echristo
Date: Wed Oct 1 19:52:57 2014
New Revision: 218844
URL: http://llvm.org/viewvc/llvm-project?rev=218844&view=rev
Log:
Remove unused variable.
Modified:
lldb/trunk/source/Plugins/Process/Linux/ThreadStateCoordinator.cpp
Modified: lldb/trunk/source/Plugins/Process/Linux/ThreadStateCoordinator.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Linux/ThreadStateCoordinator.cpp?rev=218844&r1=218843&r2=218844&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Linux/ThreadStateCoordinator.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Linux/ThreadStateCoordinator.cpp Wed Oct 1 19:52:57 2014
@@ -105,7 +105,7 @@ public:
ProcessEvent(ThreadStateCoordinator &coordinator) override
{
// Validate we know about the deferred trigger thread.
- if (auto find_it = coordinator.m_tid_stop_map.find (m_triggering_tid) == coordinator.m_tid_stop_map.end ())
+ if (coordinator.m_tid_stop_map.find (m_triggering_tid) == coordinator.m_tid_stop_map.end ())
{
// We don't know about this thread. This is an error condition.
std::ostringstream error_message;
More information about the lldb-commits
mailing list