From: Duncan P. N. Exon Smith Date: Tue, 19 Aug 2014 00:55:34 +0000 (+0000) Subject: Remove extraneous typenames from r215957 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f2534dd8b9335fe82b22039c5973377e7db6ef10;p=oota-llvm.git Remove extraneous typenames from r215957 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215958 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/IR/ConstantsContext.h b/lib/IR/ConstantsContext.h index f9485f1f38c..bb43f55f2c7 100644 --- a/lib/IR/ConstantsContext.h +++ b/lib/IR/ConstantsContext.h @@ -362,7 +362,7 @@ struct InlineAsmKeyType { AsmDialect); } - typedef typename ConstantInfo::TypeClass TypeClass; + typedef ConstantInfo::TypeClass TypeClass; InlineAsm *create(TypeClass *Ty) const { return new InlineAsm(Ty, AsmString, Constraints, HasSideEffects, IsAlignStack, AsmDialect); @@ -423,7 +423,7 @@ struct ConstantExprKeyType { hash_combine_range(Indexes.begin(), Indexes.end())); } - typedef typename ConstantInfo::TypeClass TypeClass; + typedef ConstantInfo::TypeClass TypeClass; ConstantExpr *create(TypeClass *Ty) const { switch (Opcode) { default: