[Lldb-commits] [lldb] r141546 - /lldb/trunk/include/lldb/Symbol/Block.h

Greg Clayton gclayton at apple.com
Mon Oct 10 09:33:45 PDT 2011


Author: gclayton
Date: Mon Oct 10 11:33:44 2011
New Revision: 141546

URL: http://llvm.org/viewvc/llvm-project?rev=141546&view=rev
Log:
Patch from Dragos Tatulea regarding typedefs with the new RangeArray template class.


Modified:
    lldb/trunk/include/lldb/Symbol/Block.h

Modified: lldb/trunk/include/lldb/Symbol/Block.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Symbol/Block.h?rev=141546&r1=141545&r2=141546&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Symbol/Block.h (original)
+++ lldb/trunk/include/lldb/Symbol/Block.h Mon Oct 10 11:33:44 2011
@@ -43,8 +43,8 @@
     public SymbolContextScope
 {
 public:
-    typedef RangeArray<uint32_t, uint32_t, 1> RangeArray;
-    typedef RangeArray::Entry Range;
+    typedef RangeArray<uint32_t, uint32_t, 1> RangeList;
+    typedef RangeList::Entry Range;
 
     //------------------------------------------------------------------
     /// Construct with a User ID \a uid, \a depth.
@@ -459,7 +459,7 @@
     //------------------------------------------------------------------
     SymbolContextScope *m_parent_scope;
     collection m_children;
-    RangeArray m_ranges;
+    RangeList m_ranges;
     lldb::InlineFunctionInfoSP m_inlineInfoSP; ///< Inlined function information.
     lldb::VariableListSP m_variable_list_sp; ///< The variable list for all local, static and paramter variables scoped to this block.
     bool m_parsed_block_info:1,         ///< Set to true if this block and it's children have all been parsed





More information about the lldb-commits mailing list