diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-07-16 12:32:33 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-07-16 12:32:33 +0000 |
commit | 1ee0d4f7f358d4b598fb22c696c1c50816adc622 (patch) | |
tree | 811bf2064ed94c3d519def474f932c09a45b9af6 /lldb/source/Target/ThreadPlanCallFunction.cpp | |
parent | 50729ad717ab4bf1d3cf002d5ecb28286acdd89d (diff) | |
download | bcm5719-llvm-1ee0d4f7f358d4b598fb22c696c1c50816adc622.tar.gz bcm5719-llvm-1ee0d4f7f358d4b598fb22c696c1c50816adc622.zip |
Fix constructor initialization order. Patch by Bill Lynch.
llvm-svn: 108524
Diffstat (limited to 'lldb/source/Target/ThreadPlanCallFunction.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanCallFunction.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lldb/source/Target/ThreadPlanCallFunction.cpp b/lldb/source/Target/ThreadPlanCallFunction.cpp index 0309505e4ae..55e9d25133c 100644 --- a/lldb/source/Target/ThreadPlanCallFunction.cpp +++ b/lldb/source/Target/ThreadPlanCallFunction.cpp @@ -36,12 +36,12 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread, bool stop_other_threads, bool discard_on_error) : ThreadPlan (ThreadPlan::eKindCallFunction, "Call function plan", thread, eVoteNoOpinion, eVoteNoOpinion), - m_valid(false), - m_process(thread.GetProcess()), + m_valid (false), + m_stop_other_threads (stop_other_threads), m_arg_addr (arg), m_args (NULL), - m_thread(thread), - m_stop_other_threads(stop_other_threads) + m_process (thread.GetProcess()), + m_thread (thread) { SetOkayToDiscard (discard_on_error); @@ -90,12 +90,12 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread, bool stop_other_threads, bool discard_on_error) : ThreadPlan (ThreadPlan::eKindCallFunction, "Call function plan", thread, eVoteNoOpinion, eVoteNoOpinion), - m_valid(false), - m_process(thread.GetProcess()), + m_valid (false), + m_stop_other_threads (stop_other_threads), m_arg_addr (0), m_args (&args), - m_thread(thread), - m_stop_other_threads(stop_other_threads) + m_process (thread.GetProcess()), + m_thread (thread) { SetOkayToDiscard (discard_on_error); |