diff options
Diffstat (limited to 'lldb/source/Core/ValueObject.cpp')
-rw-r--r-- | lldb/source/Core/ValueObject.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index d643a5308b5..b4331144c7d 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -1920,6 +1920,12 @@ ValueObject::GetDynamicValue (DynamicValueType use_dynamic) return ValueObjectSP(); } +ValueObjectSP +ValueObject::GetStaticValue() +{ + return GetSP(); +} + // GetDynamicValue() returns a NULL SharedPointer if the object is not dynamic // or we do not really want a dynamic VO. this method instead returns this object // itself when making it synthetic has no meaning. this makes it much simpler |