From e6f1b76fef7db55bf2129092b819865505c9e051 Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Thu, 4 Oct 2012 23:13:00 +0000 Subject: [PATCH] Fixing an issue where synthetic ValueObjects do not properly resolve their value llvm-svn: 165271 --- lldb/include/lldb/Core/ValueObjectSyntheticFilter.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h b/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h index 77cdbcf..f1d97ba 100644 --- a/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h +++ b/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h @@ -101,6 +101,12 @@ public: virtual lldb::ValueObjectSP GetNonSyntheticValue (); + virtual bool + ResolveValue (Scalar &scalar) + { + return m_parent->ResolveValue(scalar); + } + protected: virtual bool UpdateValue (); -- 2.7.4