We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ccec4b commit f47c22fCopy full SHA for f47c22f
mlir/lib/Dialect/Polynomial/IR/Polynomial.cpp
@@ -38,7 +38,7 @@ Polynomial Polynomial::fromCoefficients(ArrayRef<int64_t> coeffs) {
38
void Polynomial::print(raw_ostream &os, ::llvm::StringRef separator,
39
::llvm::StringRef exponentiation) const {
40
bool first = true;
41
- for (const auto &term : terms) {
+ for (const Monomial &term : terms) {
42
if (first) {
43
first = false;
44
} else {
0 commit comments