[Lldb-commits] [lldb] r159870 - /lldb/branches/apple/igneous/source/Core/Module.cpp

Greg Clayton gclayton at apple.com
Fri Jul 6 15:43:53 PDT 2012


Author: gclayton
Date: Fri Jul  6 17:43:53 2012
New Revision: 159870

URL: http://llvm.org/viewvc/llvm-project?rev=159870&view=rev
Log:
<rdar://problem/11819635>

Don't incorrectly clear the type list.


Modified:
    lldb/branches/apple/igneous/source/Core/Module.cpp

Modified: lldb/branches/apple/igneous/source/Core/Module.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/apple/igneous/source/Core/Module.cpp?rev=159870&r1=159869&r2=159870&view=diff
==============================================================================
--- lldb/branches/apple/igneous/source/Core/Module.cpp (original)
+++ lldb/branches/apple/igneous/source/Core/Module.cpp Fri Jul  6 17:43:53 2012
@@ -693,10 +693,6 @@
             types.RemoveMismatchedTypes (type_scope, type_basename, exact_match);
             num_matches = types.GetSize();
         }
-        else
-        {
-            types.Clear();
-        }
     }
     else
     {





More information about the lldb-commits mailing list