From: Lang Hames Date: Wed, 25 Mar 2015 12:32:36 +0000 (+0000) Subject: [Orc] Remove another unnecessary typedef. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=34676181c9e9e2347f254262acb717bcff5bc7ab;p=oota-llvm.git [Orc] Remove another unnecessary typedef. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233184 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lli/OrcLazyJIT.h b/tools/lli/OrcLazyJIT.h index 577c171697b..76e1ac63bd2 100644 --- a/tools/lli/OrcLazyJIT.h +++ b/tools/lli/OrcLazyJIT.h @@ -34,7 +34,7 @@ public: typedef orc::LazyEmittingLayer LazyEmitLayerT; typedef orc::CompileOnDemandLayer CODLayerT; - typedef typename CODLayerT::ModuleSetHandleT ModuleHandleT; + typedef CODLayerT::ModuleSetHandleT ModuleHandleT; OrcLazyJIT(std::unique_ptr TM, LLVMContext &Context) : Error(false), TM(std::move(TM)),