summaryrefslogtreecommitdiff
path: root/lldb/source/API/SBValueList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/API/SBValueList.cpp')
-rw-r--r--lldb/source/API/SBValueList.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/API/SBValueList.cpp b/lldb/source/API/SBValueList.cpp
index e96f482d4c96..71fabe0dfc0a 100644
--- a/lldb/source/API/SBValueList.cpp
+++ b/lldb/source/API/SBValueList.cpp
@@ -80,7 +80,7 @@ public:
}
lldb::SBValue
- GetValueByName (const char* name) const
+ GetFirstValueByName (const char* name) const
{
if (name)
{
@@ -277,11 +277,11 @@ SBValueList::FindValueObjectByUID (lldb::user_id_t uid)
}
SBValue
-SBValueList::GetValueByName (const char* name) const
+SBValueList::GetFirstValueByName (const char* name) const
{
SBValue sb_value;
if (m_opaque_ap.get())
- sb_value = m_opaque_ap->GetValueByName(name);
+ sb_value = m_opaque_ap->GetFirstValueByName(name);
return sb_value;
}