<div>This cleans up a constructor initialization order warning.</div><div><br></div><div>Enjoy,</div><div>Bill Lynch</div><div><br></div><div>Index: source/Target/ThreadPlanStepInstruction.cpp</div><div>===================================================================</div>
<div>--- source/Target/ThreadPlanStepInstruction.cpp<span class="Apple-tab-span" style="white-space:pre"> </span>(revision 108458)</div><div>+++ source/Target/ThreadPlanStepInstruction.cpp<span class="Apple-tab-span" style="white-space:pre"> </span>(working copy)</div>
<div>@@ -39,9 +39,10 @@</div><div> ) :</div><div> ThreadPlan (ThreadPlan::eKindStepInstruction, "Step over single instruction", thread, stop_vote, run_vote),</div><div> m_instruction_addr (0),</div><div>
+ m_stop_other_threads (stop_other_threads),</div><div> m_step_over (step_over),</div><div>- m_stack_depth(0),</div><div>- m_stop_other_threads (stop_other_threads){</div><div>+ m_stack_depth(0)</div><div>
+{</div><div> m_instruction_addr = m_thread.GetRegisterContext()->GetPC(0);</div><div> m_stack_depth = m_thread.GetStackFrameCount();</div><div> }</div><div><br></div>