summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2015-07-09 00:46:24 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2015-07-09 00:46:24 +0000
commitd1f169b744b14aaeaca7e7b254ee34e80b037254 (patch)
tree3e8921186907ece35d4c8f4e824e599b7aadb96d
parent25522f5d4a5d54a3aa6e1c443422131a6d157535 (diff)
downloadbcm5719-llvm-d1f169b744b14aaeaca7e7b254ee34e80b037254.tar.gz
bcm5719-llvm-d1f169b744b14aaeaca7e7b254ee34e80b037254.zip
Fix typename issues.
llvm-svn: 241768
-rw-r--r--llvm/include/llvm/Object/ELF.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Object/ELF.h b/llvm/include/llvm/Object/ELF.h
index 99d8deecc6c..068fc32f3a2 100644
--- a/llvm/include/llvm/Object/ELF.h
+++ b/llvm/include/llvm/Object/ELF.h
@@ -724,11 +724,11 @@ ELFFile<ELFT>::ELFFile(StringRef Object, std::error_code &EC)
template <class ELFT>
void ELFFile<ELFT>::scanDynamicTable() {
// Build load-address to file-offset map.
- typedef typename IntervalMap<
+ typedef IntervalMap<
uintX_t, uintptr_t,
IntervalMapImpl::NodeSizer<uintX_t, uintptr_t>::LeafSize,
IntervalMapHalfOpenInfo<uintX_t>> LoadMapT;
- LoadMapT::Allocator Alloc;
+ typename LoadMapT::Allocator Alloc;
LoadMapT LoadMap(Alloc);
for (Elf_Phdr_Iter PhdrI = program_header_begin(),
OpenPOWER on IntegriCloud