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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233168 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lang Hames 2015-03-25 04:00:34 +00:00
parent 339fa95661
commit afb57c0251

View 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())