summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectThread.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2010-07-20 22:52:08 +0000
committerGreg Clayton <gclayton@apple.com>2010-07-20 22:52:08 +0000
commit471b31ce625e61664236c718f5f2a76135644514 (patch)
tree93a7423513ac5802698fb508ceec00c2a4bcd863 /lldb/source/Commands/CommandObjectThread.cpp
parent3462779369380e32e68cbf35b7490a2f61475c78 (diff)
downloadbcm5719-llvm-471b31ce625e61664236c718f5f2a76135644514.tar.gz
bcm5719-llvm-471b31ce625e61664236c718f5f2a76135644514.zip
Remove use of STL collection class use of the "data()" method since it isn't
part of C++'98. Most of these were "std::vector<T>::data()" and "std::string::data()". llvm-svn: 108957
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectThread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp
index 6c38758e3fc..8f49237767f 100644
--- a/lldb/source/Commands/CommandObjectThread.cpp
+++ b/lldb/source/Commands/CommandObjectThread.cpp
@@ -1028,7 +1028,7 @@ public:
index_ptr++;
}
- new_plan = thread->QueueThreadPlanForStepUntil (abort_other_plans, address_list.data(), address_list.size(), m_options.m_stop_others);
+ new_plan = thread->QueueThreadPlanForStepUntil (abort_other_plans, &address_list.front(), address_list.size(), m_options.m_stop_others);
new_plan->SetOkayToDiscard(false);
}
else
OpenPOWER on IntegriCloud