From 1ee0d4f7f358d4b598fb22c696c1c50816adc622 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Fri, 16 Jul 2010 12:32:33 +0000 Subject: Fix constructor initialization order. Patch by Bill Lynch. llvm-svn: 108524 --- lldb/source/Target/ThreadPlanCallFunction.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lldb/source/Target/ThreadPlanCallFunction.cpp') 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); -- cgit v1.2.3