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 | |
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')
3 files changed, 7 insertions, 7 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 () { } diff --git a/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ThreadPlanStepThroughObjCTrampoline.cpp b/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ThreadPlanStepThroughObjCTrampoline.cpp index 2f2cc39a4ea..7b4aa4e87cf 100644 --- a/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ThreadPlanStepThroughObjCTrampoline.cpp +++ b/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ThreadPlanStepThroughObjCTrampoline.cpp @@ -34,13 +34,13 @@ ThreadPlanStepThroughObjCTrampoline::ThreadPlanStepThroughObjCTrampoline( lldb::addr_t sel_ptr, bool stop_others) : ThreadPlan (ThreadPlan::eKindGeneric, "MacOSX Step through ObjC Trampoline", thread, eVoteNoOpinion, eVoteNoOpinion), + m_args_addr (args_addr), + m_stop_others (stop_others), m_objc_trampoline_handler (trampoline_handler), m_impl_function (trampoline_handler->GetLookupImplementationWrapperFunction()), - m_args_addr (args_addr), m_object_ptr (object_ptr), m_class_ptr (class_ptr), - m_sel_ptr (sel_ptr), - m_stop_others (stop_others) + m_sel_ptr (sel_ptr) { } diff --git a/lldb/source/Symbol/TypeList.cpp b/lldb/source/Symbol/TypeList.cpp index f037035ed21..4595a9fa633 100644 --- a/lldb/source/Symbol/TypeList.cpp +++ b/lldb/source/Symbol/TypeList.cpp @@ -40,8 +40,8 @@ using namespace lldb_private; using namespace clang; TypeList::TypeList(const char *target_triple) : - m_types(), - m_ast(target_triple) + m_ast (target_triple), + m_types () { } |