<div>Hi, I've come across a few more of these Constructor warnings. Here are the related fixes:</div><div><br></div><div><div>Index: source/Plugins/DynamicLoader/MacOSX-DYLD/ThreadPlanStepThroughObjCTrampoline.cpp</div>
<div>===================================================================</div><div>--- source/Plugins/DynamicLoader/MacOSX-DYLD/ThreadPlanStepThroughObjCTrampoline.cpp    (revision 108835)</div><div>+++ source/Plugins/DynamicLoader/MacOSX-DYLD/ThreadPlanStepThroughObjCTrampoline.cpp    (working copy)</div>
<div>@@ -34,13 +34,13 @@</div><div>         lldb::addr_t sel_ptr,</div><div>         bool stop_others) :</div><div>     ThreadPlan (ThreadPlan::eKindGeneric, "MacOSX Step through ObjC Trampoline", thread, eVoteNoOpinion, eVoteNoOpinion),</div>
<div>+    m_args_addr (args_addr),</div><div>+    m_stop_others (stop_others),</div><div>     m_objc_trampoline_handler (trampoline_handler),</div><div>     m_impl_function (trampoline_handler->GetLookupImplementationWrapperFunction()),</div>
<div>-    m_args_addr (args_addr),</div><div>     m_object_ptr (object_ptr),</div><div>     m_class_ptr (class_ptr),</div><div>-    m_sel_ptr (sel_ptr),</div><div>-    m_stop_others (stop_others)</div><div>+    m_sel_ptr (sel_ptr)</div>
<div> {</div><div><br></div><div> }</div><div>Index: source/Interpreter/CommandObjectRegexCommand.cpp</div><div>===================================================================</div><div>--- source/Interpreter/CommandObjectRegexCommand.cpp    (revision 108835)</div>
<div>+++ source/Interpreter/CommandObjectRegexCommand.cpp    (working copy)</div><div>@@ -30,8 +30,8 @@</div><div>     uint32_t max_matches</div><div> ) :</div><div>     CommandObject (name, help, syntax),</div><div>-    m_entries(),</div>
<div>-    m_max_matches (max_matches)</div><div>+    m_max_matches (max_matches),</div><div>+    m_entries ()</div><div> {</div><div> }</div><div><br></div><div>Index: source/Symbol/TypeList.cpp</div><div>===================================================================</div>
<div>--- source/Symbol/TypeList.cpp  (revision 108835)</div><div>+++ source/Symbol/TypeList.cpp  (working copy)</div><div>@@ -40,8 +40,8 @@</div><div> using namespace clang;</div><div><br></div><div> TypeList::TypeList(const char *target_triple) :</div>
<div>-    m_types(),</div><div>-    m_ast(target_triple)</div><div>+    m_ast (target_triple),</div><div>+    m_types ()</div><div> {</div><div> }</div><div><br></div></div>