From 107cd0caa9c1250a86d31983b808b99e5b7d1d10 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Sat, 13 Apr 2013 02:31:34 +0000 Subject: [PATCH] Add typenames to see if bot goes green. I hope this brings http://lab.llvm.org:8011/builders/clang-x86_64-darwin11-self-mingw32 back. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179446 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Object/MachO.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(); }