From 40e155dfc2171472cc72cb3392f58cde68ec3bd5 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Tue, 20 Jul 2010 14:37:45 +0000 Subject: More constructor warning fixes from William Lynch. llvm-svn: 108840 --- lldb/source/Interpreter/CommandObjectRegexCommand.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/Interpreter/CommandObjectRegexCommand.cpp') 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 () { } -- cgit v1.2.3