summaryrefslogtreecommitdiff
path: root/lldb/source/Target/ThreadPlanTestCondition.cpp
diff options
context:
space:
mode:
authorStephen Wilson <wilsons@start.ca>2011-04-11 19:41:40 +0000
committerStephen Wilson <wilsons@start.ca>2011-04-11 19:41:40 +0000
commit71c21d18c3a29abf03e7904b42d84ccfc3be036b (patch)
tree83d783264562df4449105ff022dff7e4506e5c98 /lldb/source/Target/ThreadPlanTestCondition.cpp
parent2b899767e1ed8518e48952effc449e17922b8ef3 (diff)
Order of initialization lists.
This patch fixes all of the warnings due to unordered initialization lists. Patch by Marco Minutoli. llvm-svn: 129290
Diffstat (limited to 'lldb/source/Target/ThreadPlanTestCondition.cpp')
-rw-r--r--lldb/source/Target/ThreadPlanTestCondition.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanTestCondition.cpp b/lldb/source/Target/ThreadPlanTestCondition.cpp
index b2c90db95774..9facfdcb95c9 100644
--- a/lldb/source/Target/ThreadPlanTestCondition.cpp
+++ b/lldb/source/Target/ThreadPlanTestCondition.cpp
@@ -43,8 +43,8 @@ ThreadPlanTestCondition::ThreadPlanTestCondition (
lldb::BreakpointLocationSP break_loc_sp,
bool stop_others) :
ThreadPlan (ThreadPlan::eKindTestCondition, "test condition", thread, eVoteNoOpinion, eVoteNoOpinion),
- m_exe_ctx (exe_ctx),
m_expression (expression),
+ m_exe_ctx (exe_ctx),
m_break_loc_sp (break_loc_sp),
m_did_stop (false),
m_stop_others (stop_others)