Skip to content

Commit a8058c1

Browse files
committed
[MLIR] Apply clang-tidy fixes for misc-use-internal-linkage in AsmPrinter.cpp (NFC)
1 parent 2f627c1 commit a8058c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/IR/AsmPrinter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2032,7 +2032,7 @@ class AsmStateImpl {
20322032
};
20332033

20342034
template <typename Range>
2035-
void printDimensionList(raw_ostream &stream, Range &&shape) {
2035+
static void printDimensionList(raw_ostream &stream, Range &&shape) {
20362036
llvm::interleave(
20372037
shape, stream,
20382038
[&stream](const auto &dimSize) {

0 commit comments

Comments
 (0)