diff options
| author | Mehdi Amini <joker.eph@gmail.com> | 2025-08-21 10:34:04 -0700 |
|---|---|---|
| committer | Mehdi Amini <joker.eph@gmail.com> | 2025-11-21 04:15:31 -0800 |
| commit | a8058c177d0e45993108936cfca532d3dab037fc (patch) | |
| tree | 37a17689662584aa7e26458b16d979fbb150379d | |
| parent | 2f627c1878a3dba594c872773107c556992af3a1 (diff) | |
[MLIR] Apply clang-tidy fixes for misc-use-internal-linkage in AsmPrinter.cpp (NFC)
| -rw-r--r-- | mlir/lib/IR/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/IR/AsmPrinter.cpp b/mlir/lib/IR/AsmPrinter.cpp index 9b23dd6e4f28..fd846e4b4195 100644 --- a/mlir/lib/IR/AsmPrinter.cpp +++ b/mlir/lib/IR/AsmPrinter.cpp @@ -2032,7 +2032,7 @@ private: }; template <typename Range> -void printDimensionList(raw_ostream &stream, Range &&shape) { +static void printDimensionList(raw_ostream &stream, Range &&shape) { llvm::interleave( shape, stream, [&stream](const auto &dimSize) { |
