diff --git a/include/llvm/Object/MachO.h b/include/llvm/Object/MachO.h index b3051ccecff..6964c2e4ca5 100644 --- a/include/llvm/Object/MachO.h +++ b/include/llvm/Object/MachO.h @@ -604,7 +604,7 @@ bool MachOObjectFileMiddle::isRelocationPCRel(const RelocationEntry *RE) const { typedef MachOObjectFileMiddle ObjType; if (isRelocationScattered(RE)) { - const ObjType::ScatteredRelocationEntry *SRE = + const typename MachOObjectFileMiddle::ScatteredRelocationEntry *SRE = reinterpret_cast(RE); return SRE->getPCRel(); } @@ -616,7 +616,7 @@ unsigned MachOObjectFileMiddle::getRelocationLength(const RelocationEntry *RE) const { typedef MachOObjectFileMiddle ObjType; if (isRelocationScattered(RE)) { - const ObjType::ScatteredRelocationEntry *SRE = + const typename ObjType::ScatteredRelocationEntry *SRE = reinterpret_cast(RE); return SRE->getLength(); } @@ -629,7 +629,7 @@ MachOObjectFileMiddle::getRelocationTypeImpl(const RelocationEntry *RE) const { typedef MachOObjectFileMiddle ObjType; if (isRelocationScattered(RE)) { - const ObjType::ScatteredRelocationEntry *SRE = + const typename ObjType::ScatteredRelocationEntry *SRE = reinterpret_cast(RE); return SRE->getType(); }