From: Enrico Granata Date: Thu, 4 Oct 2012 23:13:00 +0000 (+0000) Subject: Fixing an issue where synthetic ValueObjects do not properl... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6f1b76fef7db55bf2129092b819865505c9e051;p=platform%2Fupstream%2Fllvm.git Fixing an issue where synthetic ValueObjects do not properly resolve their value llvm-svn: 165271 --- 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 ();