From 995e10ac9b4f2fd6ca156942f878d04b58f6ff51 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Mon, 10 Oct 2011 16:33:44 +0000 Subject: [PATCH] Patch from Dragos Tatulea regarding typedefs with the new RangeArray template class. llvm-svn: 141546 --- lldb/include/lldb/Symbol/Block.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lldb/include/lldb/Symbol/Block.h b/lldb/include/lldb/Symbol/Block.h index 6ca309778ca4..2d95b2a24f4c 100644 --- a/lldb/include/lldb/Symbol/Block.h +++ b/lldb/include/lldb/Symbol/Block.h @@ -43,8 +43,8 @@ class Block : public SymbolContextScope { public: - typedef RangeArray RangeArray; - typedef RangeArray::Entry Range; + typedef RangeArray RangeList; + typedef RangeList::Entry Range; //------------------------------------------------------------------ /// Construct with a User ID \a uid, \a depth. @@ -459,7 +459,7 @@ protected: //------------------------------------------------------------------ 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