Remove unused initialization.
authorJason Molenda <jmolenda@apple.com>
Thu, 16 Oct 2014 07:53:46 +0000 (07:53 +0000)
committerJason Molenda <jmolenda@apple.com>
Thu, 16 Oct 2014 07:53:46 +0000 (07:53 +0000)
clang static analyzer fixit.

llvm-svn: 219909

lldb/source/Target/Thread.cpp

index 17f0619..4171cc7 100644 (file)
@@ -1690,7 +1690,7 @@ Thread::DumpThreadPlans (Stream *s,
                          bool include_internal,
                          bool ignore_boring_threads) const
 {
-    uint32_t stack_size = m_plan_stack.size();
+    uint32_t stack_size;
 
     if (ignore_boring_threads)
     {