From 471b31ce625e61664236c718f5f2a76135644514 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Tue, 20 Jul 2010 22:52:08 +0000 Subject: 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::data()" and "std::string::data()". llvm-svn: 108957 --- lldb/source/Commands/CommandObjectThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Commands/CommandObjectThread.cpp') 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 -- cgit v1.2.3