diff options
Diffstat (limited to 'lldb/source/API/SBValue.cpp')
| -rw-r--r-- | lldb/source/API/SBValue.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lldb/source/API/SBValue.cpp b/lldb/source/API/SBValue.cpp index f92be9f1037..a90c1bff6b7 100644 --- a/lldb/source/API/SBValue.cpp +++ b/lldb/source/API/SBValue.cpp @@ -176,6 +176,15 @@ SBValue::GetValue (const SBFrame &frame) return value_string; } +const char * +SBValue::GetObjectDescription (const SBFrame &frame) +{ + const char *value_string = NULL; + if ( m_opaque_sp) + value_string = m_opaque_sp->GetObjectDescription (frame.get()); + return value_string; +} + bool SBValue::GetValueDidChange (const SBFrame &frame) { |

