[llvm] r233168 - [Orc] Remove extraneous 'typename'. This should cheer the bots up.

Lang Hames lhames at gmail.com
Tue Mar 24 21:00:34 PDT 2015


Author: lhames
Date: Tue Mar 24 23:00:34 2015
New Revision: 233168

URL: http://llvm.org/viewvc/llvm-project?rev=233168&view=rev
Log:
[Orc] Remove extraneous 'typename'. This should cheer the bots up.

Modified:
    llvm/trunk/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h

Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h?rev=233168&r1=233167&r2=233168&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h Tue Mar 24 23:00:34 2015
@@ -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())





More information about the llvm-commits mailing list