Add typenames to see if bot goes green.
authorRafael Espindola <rafael.espindola@gmail.com>
Sat, 13 Apr 2013 02:31:34 +0000 (02:31 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Sat, 13 Apr 2013 02:31:34 +0000 (02:31 +0000)
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

index b3051ccecffdda4a5c029dc27082568108dc553d..6964c2e4ca5f5f7ed13689960b15bca8c3e4fe37 100644 (file)
@@ -604,7 +604,7 @@ bool
 MachOObjectFileMiddle<E>::isRelocationPCRel(const RelocationEntry *RE) const {
   typedef MachOObjectFileMiddle<E> ObjType;
   if (isRelocationScattered(RE)) {
-    const ObjType::ScatteredRelocationEntry *SRE =
+    const typename MachOObjectFileMiddle<E>::ScatteredRelocationEntry *SRE =
       reinterpret_cast<const typename ObjType::ScatteredRelocationEntry *>(RE);
     return SRE->getPCRel();
   }
@@ -616,7 +616,7 @@ unsigned
 MachOObjectFileMiddle<E>::getRelocationLength(const RelocationEntry *RE) const {
   typedef MachOObjectFileMiddle<E> ObjType;
   if (isRelocationScattered(RE)) {
-    const ObjType::ScatteredRelocationEntry *SRE =
+    const typename ObjType::ScatteredRelocationEntry *SRE =
       reinterpret_cast<const typename ObjType::ScatteredRelocationEntry *>(RE);
     return SRE->getLength();
   }
@@ -629,7 +629,7 @@ MachOObjectFileMiddle<E>::getRelocationTypeImpl(const RelocationEntry *RE)
                                                                          const {
   typedef MachOObjectFileMiddle<E> ObjType;
   if (isRelocationScattered(RE)) {
-    const ObjType::ScatteredRelocationEntry *SRE =
+    const typename ObjType::ScatteredRelocationEntry *SRE =
       reinterpret_cast<const typename ObjType::ScatteredRelocationEntry *>(RE);
     return SRE->getType();
   }