diff options
Diffstat (limited to 'lldb/source/Interpreter/CommandObjectRegexCommand.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandObjectRegexCommand.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/CommandObjectRegexCommand.cpp b/lldb/source/Interpreter/CommandObjectRegexCommand.cpp index e165fc8009a..30f3eef50ef 100644 --- a/lldb/source/Interpreter/CommandObjectRegexCommand.cpp +++ b/lldb/source/Interpreter/CommandObjectRegexCommand.cpp @@ -30,8 +30,8 @@ CommandObjectRegexCommand::CommandObjectRegexCommand uint32_t max_matches ) : CommandObject (name, help, syntax), - m_entries(), - m_max_matches (max_matches) + m_max_matches (max_matches), + m_entries () { } |