diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-07-20 14:37:45 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-07-20 14:37:45 +0000 |
commit | 40e155dfc2171472cc72cb3392f58cde68ec3bd5 (patch) | |
tree | 4c47b318697d99b37f7b0e8dbec4f11dc4a28b97 /lldb/source/Interpreter/CommandObjectRegexCommand.cpp | |
parent | 31dfb75b52813c5cebb3b9ea9b00a7399025cedc (diff) | |
download | bcm5719-llvm-40e155dfc2171472cc72cb3392f58cde68ec3bd5.tar.gz bcm5719-llvm-40e155dfc2171472cc72cb3392f58cde68ec3bd5.zip |
More constructor warning fixes from William Lynch.
llvm-svn: 108840
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 () { } |