From 82352538576a67d746ae2c0ba4ec5453839e70cd Mon Sep 17 00:00:00 2001 From: Dave Lee Date: Fri, 3 Feb 2023 21:44:07 -0800 Subject: [lldb] Remove unused CommandObjectRegexCommand::m_max_matches (NFC) --- lldb/source/Commands/CommandObjectRegexCommand.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lldb/source/Commands/CommandObjectRegexCommand.cpp') diff --git a/lldb/source/Commands/CommandObjectRegexCommand.cpp b/lldb/source/Commands/CommandObjectRegexCommand.cpp index 8571930..2d44ada 100644 --- a/lldb/source/Commands/CommandObjectRegexCommand.cpp +++ b/lldb/source/Commands/CommandObjectRegexCommand.cpp @@ -19,10 +19,9 @@ using namespace lldb_private; // CommandObjectRegexCommand constructor CommandObjectRegexCommand::CommandObjectRegexCommand( CommandInterpreter &interpreter, llvm::StringRef name, llvm::StringRef help, - llvm::StringRef syntax, uint32_t max_matches, uint32_t completion_type_mask, - bool is_removable) + llvm::StringRef syntax, uint32_t completion_type_mask, bool is_removable) : CommandObjectRaw(interpreter, name, help, syntax), - m_max_matches(max_matches), m_completion_type_mask(completion_type_mask), + m_completion_type_mask(completion_type_mask), m_is_removable(is_removable) {} // Destructor -- cgit v1.1