OSDN Git Service

[Orc] Remove extraneous 'typename'. This should cheer the bots up.
authorLang Hames <lhames@gmail.com>
Wed, 25 Mar 2015 04:00:34 +0000 (04:00 +0000)
committerLang Hames <lhames@gmail.com>
Wed, 25 Mar 2015 04:00:34 +0000 (04:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233168 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ExecutionEngine/Orc/IndirectionUtils.h

index bfc8614..8ce1d4d 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())