Skip to content

Commit 820e438

Browse files
committed
Apply clang-tidy fixes for readability-identifier-naming in MlirOptMain.cpp (NFC)
1 parent e1164d0 commit 820e438

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mlir/lib/Tools/mlir-opt/MlirOptMain.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ using namespace llvm;
5454
namespace {
5555
class BytecodeVersionParser : public cl::parser<std::optional<int64_t>> {
5656
public:
57-
BytecodeVersionParser(cl::Option &O)
58-
: cl::parser<std::optional<int64_t>>(O) {}
57+
BytecodeVersionParser(cl::Option &o)
58+
: cl::parser<std::optional<int64_t>>(o) {}
5959

60-
bool parse(cl::Option &O, StringRef /*argName*/, StringRef arg,
60+
bool parse(cl::Option &o, StringRef /*argName*/, StringRef arg,
6161
std::optional<int64_t> &v) {
6262
long long w;
6363
if (getAsSignedInteger(arg, 10, w))
64-
return O.error("Invalid argument '" + arg +
64+
return o.error("Invalid argument '" + arg +
6565
"', only integer is supported.");
6666
v = w;
6767
return false;

0 commit comments

Comments
 (0)