Skip to content

Commit d807beb

Browse files
committed
[MLIR] Apply clang-tidy fixes for readability-identifier-naming in Matrix.cpp (NFC)
1 parent 3e3e362 commit d807beb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/lib/Analysis/Presburger/Matrix.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,10 +402,10 @@ void Matrix<T>::print(raw_ostream &os) const {
402402
for (unsigned row = 0; row < nRows; ++row)
403403
for (unsigned column = 0; column < nColumns; ++column)
404404
updatePrintMetrics<T>(at(row, column), ptm);
405-
unsigned MIN_SPACING = 1;
405+
unsigned minSpacing = 1;
406406
for (unsigned row = 0; row < nRows; ++row) {
407407
for (unsigned column = 0; column < nColumns; ++column) {
408-
printWithPrintMetrics<T>(os, at(row, column), MIN_SPACING, ptm);
408+
printWithPrintMetrics<T>(os, at(row, column), minSpacing, ptm);
409409
}
410410
os << "\n";
411411
}

0 commit comments

Comments
 (0)