summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2010-07-20 14:37:45 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2010-07-20 14:37:45 +0000
commit40e155dfc2171472cc72cb3392f58cde68ec3bd5 (patch)
tree4c47b318697d99b37f7b0e8dbec4f11dc4a28b97 /lldb/source/Interpreter/CommandObjectRegexCommand.cpp
parent31dfb75b52813c5cebb3b9ea9b00a7399025cedc (diff)
downloadbcm5719-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.cpp4
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 ()
{
}
OpenPOWER on IntegriCloud