summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMehdi Amini <joker.eph@gmail.com>2023-10-20 11:53:33 -0700
committerMehdi Amini <joker.eph@gmail.com>2024-02-17 14:05:03 -0800
commit9e0e1ca17e9ddd3e3aba1b83fd4c1ac59b41ff79 (patch)
tree2859d13a40bb9401b1cf698be2fdd6fbc82fbaac
parentb748f153061b74b858de687a8715a854f0800540 (diff)
Apply clang-tidy fixes for performance-unnecessary-value-param in TestReifyValueBounds.cpp (NFC)
-rw-r--r--mlir/test/lib/Dialect/Affine/TestReifyValueBounds.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/test/lib/Dialect/Affine/TestReifyValueBounds.cpp b/mlir/test/lib/Dialect/Affine/TestReifyValueBounds.cpp
index 393e83beb475..39671a930f2e 100644
--- a/mlir/test/lib/Dialect/Affine/TestReifyValueBounds.cpp
+++ b/mlir/test/lib/Dialect/Affine/TestReifyValueBounds.cpp
@@ -56,7 +56,7 @@ private:
} // namespace
-FailureOr<BoundType> parseBoundType(std::string type) {
+FailureOr<BoundType> parseBoundType(const std::string &type) {
if (type == "EQ")
return BoundType::EQ;
if (type == "LB")