From: Chris Lattner Date: Tue, 13 Jul 2010 05:52:36 +0000 (+0000) Subject: use a typedef instead of its expansion, patch by Michael Spencer X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a838bae1863b463c07056c086ab7c23faa9759e7;p=oota-llvm.git use a typedef instead of its expansion, patch by Michael Spencer git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108229 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCAssembler.h b/include/llvm/MC/MCAssembler.h index 6ee1fe0cd83..07ca070ab28 100644 --- a/include/llvm/MC/MCAssembler.h +++ b/include/llvm/MC/MCAssembler.h @@ -354,7 +354,7 @@ public: typedef FragmentListType::reverse_iterator reverse_iterator; private: - iplist Fragments; + FragmentListType Fragments; const MCSection *Section; /// Ordinal - The section index in the assemblers section list.