From 4562e389a43caa2e30ebf277c12743edafe6a0ac Mon Sep 17 00:00:00 2001 From: River Riddle Date: Wed, 18 Dec 2019 09:28:48 -0800 Subject: NFC: Remove unnecessary 'llvm::' prefix from uses of llvm symbols declared in `mlir` namespace. Aside from being cleaner, this also makes the codebase more consistent. PiperOrigin-RevId: 286206974 --- mlir/lib/IR/Block.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mlir/lib/IR/Block.cpp') diff --git a/mlir/lib/IR/Block.cpp b/mlir/lib/IR/Block.cpp index 63e85802b73..4dac32ae0c0 100644 --- a/mlir/lib/IR/Block.cpp +++ b/mlir/lib/IR/Block.cpp @@ -159,7 +159,7 @@ BlockArgument *Block::addArgument(Type type) { /// Add one argument to the argument list for each type specified in the list. auto Block::addArguments(ArrayRef types) - -> llvm::iterator_range { + -> iterator_range { arguments.reserve(arguments.size() + types.size()); auto initialSize = arguments.size(); for (auto type : types) { -- cgit v1.2.3