diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-06-03 20:41:09 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-06-03 20:41:09 +0000 |
commit | 6b5f17a58638ce8f58b916c90cb40f86ff2f6eff (patch) | |
tree | d9a4b3074abde6c5a7eb5dc54d2058d66acf7c49 /lldb/source/Target/ThreadPlanCallFunction.cpp | |
parent | 10bc01032c9a099d4e5a438cfdd66431c6749dc0 (diff) | |
download | llvm-6b5f17a58638ce8f58b916c90cb40f86ff2f6eff.zip llvm-6b5f17a58638ce8f58b916c90cb40f86ff2f6eff.tar.gz llvm-6b5f17a58638ce8f58b916c90cb40f86ff2f6eff.tar.bz2 |
Fix some order-of-initialisation warnings
llvm-svn: 132588
Diffstat (limited to 'lldb/source/Target/ThreadPlanCallFunction.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanCallFunction.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Target/ThreadPlanCallFunction.cpp b/lldb/source/Target/ThreadPlanCallFunction.cpp index 40ee45f..163322a 100644 --- a/lldb/source/Target/ThreadPlanCallFunction.cpp +++ b/lldb/source/Target/ThreadPlanCallFunction.cpp @@ -45,10 +45,10 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread, ThreadPlan (ThreadPlan::eKindCallFunction, "Call function plan", thread, eVoteNoOpinion, eVoteNoOpinion), m_valid (false), m_stop_other_threads (stop_other_threads), + m_function_sp (NULL), m_process (thread.GetProcess()), m_thread (thread), - m_takedown_done (false), - m_function_sp (NULL) + m_takedown_done (false) { SetOkayToDiscard (discard_on_error); @@ -158,10 +158,10 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread, ThreadPlan (ThreadPlan::eKindCallFunction, "Call function plan", thread, eVoteNoOpinion, eVoteNoOpinion), m_valid (false), m_stop_other_threads (stop_other_threads), + m_function_sp(NULL), m_process (thread.GetProcess()), m_thread (thread), - m_takedown_done (false), - m_function_sp(NULL) + m_takedown_done (false) { SetOkayToDiscard (discard_on_error); |