Skip to content

Commit f47c22f

Browse files
committed
expand auto
1 parent 2ccec4b commit f47c22f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/Polynomial/IR/Polynomial.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Polynomial Polynomial::fromCoefficients(ArrayRef<int64_t> coeffs) {
3838
void Polynomial::print(raw_ostream &os, ::llvm::StringRef separator,
3939
::llvm::StringRef exponentiation) const {
4040
bool first = true;
41-
for (const auto &term : terms) {
41+
for (const Monomial &term : terms) {
4242
if (first) {
4343
first = false;
4444
} else {

0 commit comments

Comments
 (0)