From: Michael J. Spencer Date: Thu, 9 Jul 2015 00:46:24 +0000 (+0000) Subject: Fix typename issues. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=43dce9c732ebd03064464b7f96b5e933b18346b7;p=oota-llvm.git Fix typename issues. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241768 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Object/ELF.h b/include/llvm/Object/ELF.h index 99d8deecc6c..068fc32f3a2 100644 --- a/include/llvm/Object/ELF.h +++ b/include/llvm/Object/ELF.h @@ -724,11 +724,11 @@ ELFFile::ELFFile(StringRef Object, std::error_code &EC) template void ELFFile::scanDynamicTable() { // Build load-address to file-offset map. - typedef typename IntervalMap< + typedef IntervalMap< uintX_t, uintptr_t, IntervalMapImpl::NodeSizer::LeafSize, IntervalMapHalfOpenInfo> LoadMapT; - LoadMapT::Allocator Alloc; + typename LoadMapT::Allocator Alloc; LoadMapT LoadMap(Alloc); for (Elf_Phdr_Iter PhdrI = program_header_begin(),