diff options
-rw-r--r-- | lldb/include/lldb/API/SBValueList.h | 4 | ||||
-rw-r--r-- | lldb/source/API/SBFrame.cpp | 4 | ||||
-rw-r--r-- | lldb/source/API/SBValueList.cpp | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/lldb/include/lldb/API/SBValueList.h b/lldb/include/lldb/API/SBValueList.h index 5d046e4e7cd..4bf5967f5c6 100644 --- a/lldb/include/lldb/API/SBValueList.h +++ b/lldb/include/lldb/API/SBValueList.h @@ -54,8 +54,10 @@ public: protected: + // only useful for visualizing the pointer or comparing two SBValueLists + // to see if they are backed by the same underlying Impl. void * - get (); + opaque_ptr (); private: friend class SBFrame; diff --git a/lldb/source/API/SBFrame.cpp b/lldb/source/API/SBFrame.cpp index f339c90d54d..880bab88c23 100644 --- a/lldb/source/API/SBFrame.cpp +++ b/lldb/source/API/SBFrame.cpp @@ -1159,7 +1159,7 @@ SBFrame::GetVariables (bool arguments, if (log) { - log->Printf ("SBFrame(%p)::GetVariables (...) => SBValueList(%p)", frame, value_list.get()); + log->Printf ("SBFrame(%p)::GetVariables (...) => SBValueList(%p)", frame, value_list.opaque_ptr()); } return value_list; @@ -1209,7 +1209,7 @@ SBFrame::GetRegisters () } if (log) - log->Printf ("SBFrame(%p)::GetRegisters () => SBValueList(%p)", frame, value_list.get()); + log->Printf ("SBFrame(%p)::GetRegisters () => SBValueList(%p)", frame, value_list.opaque_ptr()); return value_list; } diff --git a/lldb/source/API/SBValueList.cpp b/lldb/source/API/SBValueList.cpp index 32b60f4b4d8..9b0073d9bd3 100644 --- a/lldb/source/API/SBValueList.cpp +++ b/lldb/source/API/SBValueList.cpp @@ -263,7 +263,7 @@ SBValueList::FindValueObjectByUID (lldb::user_id_t uid) } void * -SBValueList::get () +SBValueList::opaque_ptr () { return m_opaque_ap.get(); } |