diff options
Diffstat (limited to 'mlir/lib/IR/IntegerSet.cpp')
| -rw-r--r-- | mlir/lib/IR/IntegerSet.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mlir/lib/IR/IntegerSet.cpp b/mlir/lib/IR/IntegerSet.cpp index e5715877649..ce50fa7cc5b 100644 --- a/mlir/lib/IR/IntegerSet.cpp +++ b/mlir/lib/IR/IntegerSet.cpp @@ -73,8 +73,7 @@ MLIRContext *IntegerSet::getContext() const { /// Walk all of the AffineExpr's in this set. Each node in an expression /// tree is visited in postorder. -void IntegerSet::walkExprs( - llvm::function_ref<void(AffineExpr)> callback) const { +void IntegerSet::walkExprs(function_ref<void(AffineExpr)> callback) const { for (auto expr : getConstraints()) expr.walk(callback); } |

