<rdar://problem/12413390> Fixing an issue where synthetic ValueObjects do not properly resolve their value

llvm-svn: 165271
This commit is contained in:
Enrico Granata 2012-10-04 23:13:00 +00:00
parent b4faa15125
commit e6f1b76fef
1 changed files with 6 additions and 0 deletions

View File

@ -101,6 +101,12 @@ public:
virtual lldb::ValueObjectSP
GetNonSyntheticValue ();
virtual bool
ResolveValue (Scalar &scalar)
{
return m_parent->ResolveValue(scalar);
}
protected:
virtual bool
UpdateValue ();