More constructor warning fixes from William Lynch.

git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@108840 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/CommandObjectRegexCommand.cpp b/source/Interpreter/CommandObjectRegexCommand.cpp
index e165fc8..30f3eef 100644
--- a/source/Interpreter/CommandObjectRegexCommand.cpp
+++ b/source/Interpreter/CommandObjectRegexCommand.cpp
@@ -30,8 +30,8 @@
     uint32_t max_matches
 ) :
     CommandObject (name, help, syntax),
-    m_entries(),
-    m_max_matches (max_matches)
+    m_max_matches (max_matches),
+    m_entries ()
 {
 }