Omit llvm:: before makeArrayRef. We have using directive in this file.

llvm-svn: 188659
This commit is contained in:
Robert Wilhelm 2013-08-19 07:57:02 +00:00
parent b3e8172e9e
commit 88e024969b
1 changed files with 5 additions and 10 deletions

View File

@ -909,14 +909,10 @@ ExprResult Sema::BuildObjCDictionaryLiteral(SourceRange SR,
QualType Ty
= Context.getObjCObjectPointerType(
Context.getObjCInterfaceType(NSDictionaryDecl));
return MaybeBindToTemporary(
ObjCDictionaryLiteral::Create(Context,
llvm::makeArrayRef(Elements,
NumElements),
HasPackExpansions,
Ty,
DictionaryWithObjectsMethod, SR));
Context.getObjCInterfaceType(NSDictionaryDecl));
return MaybeBindToTemporary(ObjCDictionaryLiteral::Create(
Context, makeArrayRef(Elements, NumElements), HasPackExpansions, Ty,
DictionaryWithObjectsMethod, SR));
}
ExprResult Sema::BuildObjCEncodeExpression(SourceLocation AtLoc,
@ -1365,8 +1361,7 @@ bool Sema::CheckMessageArgumentTypes(QualType ReceiverType,
// Do additional checkings on method.
IsError |= CheckObjCMethodCall(
Method, SelLoc,
llvm::makeArrayRef<const Expr *>(Args.data(), Args.size()));
Method, SelLoc, makeArrayRef<const Expr *>(Args.data(), Args.size()));
return IsError;
}