[Orc] Remove extraneous 'typename'. This should cheer the bots up.
[oota-llvm.git] / include / llvm / ExecutionEngine / Orc / IndirectionUtils.h
index bfc86147e43fbf2a330f6f4a99f212b9f5a17ace..8ce1d4d545286dd3a5ec60990f54f5154ad43ced 100644 (file)
@@ -70,7 +70,7 @@ public:
   /// @brief Execute the callback for the given trampoline id. Called by the JIT
   ///        to compile functions on demand.
   TargetAddress executeCompileCallback(TargetAddress TrampolineID) {
-    typename TrampolineMapT::iterator I = ActiveTrampolines.find(TrampolineID);
+    TrampolineMapT::iterator I = ActiveTrampolines.find(TrampolineID);
     // FIXME: Also raise an error in the Orc error-handler when we finally have
     //        one.
     if (I == ActiveTrampolines.end())