Remove unused variable.

llvm-svn: 218844
This commit is contained in:
Eric Christopher 2014-10-02 00:52:57 +00:00
parent 94ec17fac9
commit 78b833bb53
1 changed files with 1 additions and 1 deletions

View File

@ -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;