diff options
author | Jason Molenda <jmolenda@apple.com> | 2013-11-12 23:33:32 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2013-11-12 23:33:32 +0000 |
commit | 008c45f1a1a7a60736a0afbb03b57f43b11dcf49 (patch) | |
tree | 7114ed975f63a8e96be158e08c350bc9d2bde21e /lldb/source/API/SBProcess.cpp | |
parent | 6cd1b9aec4a9f84f9a88679c8cfbe92fbf5fbf81 (diff) | |
download | llvm-008c45f1a1a7a60736a0afbb03b57f43b11dcf49.zip llvm-008c45f1a1a7a60736a0afbb03b57f43b11dcf49.tar.gz llvm-008c45f1a1a7a60736a0afbb03b57f43b11dcf49.tar.bz2 |
Change SBThread::GetExtendedBacktrace to
SBThread::GetExtendedBacktraceThread to make it more clear what is
being returned.
llvm-svn: 194531
Diffstat (limited to 'lldb/source/API/SBProcess.cpp')
-rw-r--r-- | lldb/source/API/SBProcess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBProcess.cpp b/lldb/source/API/SBProcess.cpp index d690da7..557006f 100644 --- a/lldb/source/API/SBProcess.cpp +++ b/lldb/source/API/SBProcess.cpp @@ -1278,7 +1278,7 @@ SBProcess::GetExtendedBacktraceTypeAtIndex (uint32_t idx) if (process_sp && process_sp->GetSystemRuntime()) { SystemRuntime *runtime = process_sp->GetSystemRuntime(); - std::vector<ConstString> names = runtime->GetExtendedBacktraceTypes(); + const std::vector<ConstString> &names = runtime->GetExtendedBacktraceTypes(); if (idx < names.size()) { return names[idx].AsCString(); |