mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Fix typename issues.
llvm-svn: 241768
This commit is contained in:
parent
b5535ebef9
commit
80c10c497b
@ -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(),
|
||||
|
Loading…
Reference in New Issue
Block a user