diff options
Diffstat (limited to 'lldb/source/API/SBValueList.cpp')
-rw-r--r-- | lldb/source/API/SBValueList.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/API/SBValueList.cpp b/lldb/source/API/SBValueList.cpp index 4e0fea5688c..c5932b02c86 100644 --- a/lldb/source/API/SBValueList.cpp +++ b/lldb/source/API/SBValueList.cpp @@ -64,6 +64,12 @@ SBValueList::IsValid () const return (m_opaque_ap.get() != NULL); } +void +SBValueList::Clear() +{ + m_opaque_ap.reset(); +} + const SBValueList & SBValueList::operator = (const SBValueList &rhs) { |