diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-06-28 23:22:23 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-06-28 23:22:23 +0000 |
commit | 00bbdcf9b3daef3ae2519ebb7cf18fcdba6d894b (patch) | |
tree | 112b0f39bf6e9ae297971f98e39a022e361843ad /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 05cef846404035dc0104bd7a6393efdb353c8330 (diff) | |
download | bcm5719-llvm-00bbdcf9b3daef3ae2519ebb7cf18fcdba6d894b.tar.gz bcm5719-llvm-00bbdcf9b3daef3ae2519ebb7cf18fcdba6d894b.zip |
Remove llvm:: from uses of ArrayRef.
llvm-svn: 211987
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 2fe2b9bc36e..4786b08f03f 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2312,7 +2312,7 @@ public: llvm::Value *EmitARCRetainScalarExpr(const Expr *expr); llvm::Value *EmitARCRetainAutoreleaseScalarExpr(const Expr *expr); - void EmitARCIntrinsicUse(llvm::ArrayRef<llvm::Value*> values); + void EmitARCIntrinsicUse(ArrayRef<llvm::Value*> values); static Destroyer destroyARCStrongImprecise; static Destroyer destroyARCStrongPrecise; |