diff options
Diffstat (limited to 'lldb/source/Core/ValueObjectCast.cpp')
-rw-r--r-- | lldb/source/Core/ValueObjectCast.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/source/Core/ValueObjectCast.cpp b/lldb/source/Core/ValueObjectCast.cpp index 6b6f67e08f0..637882cecc9 100644 --- a/lldb/source/Core/ValueObjectCast.cpp +++ b/lldb/source/Core/ValueObjectCast.cpp @@ -55,7 +55,7 @@ ValueObjectCast::ValueObjectCast { SetName (name); //m_value.SetContext (Value::eContextTypeClangType, cast_type.GetOpaqueQualType()); - m_value.SetClangType (cast_type); + m_value.SetCompilerType (cast_type); } ValueObjectCast::~ValueObjectCast() @@ -63,7 +63,7 @@ ValueObjectCast::~ValueObjectCast() } CompilerType -ValueObjectCast::GetClangTypeImpl () +ValueObjectCast::GetCompilerTypeImpl () { return m_cast_type; } @@ -71,7 +71,7 @@ ValueObjectCast::GetClangTypeImpl () size_t ValueObjectCast::CalculateNumChildren() { - return GetClangType().GetNumChildren (true); + return GetCompilerType().GetNumChildren (true); } uint64_t @@ -98,9 +98,9 @@ ValueObjectCast::UpdateValue () Value old_value(m_value); m_update_point.SetUpdated(); m_value = m_parent->GetValue(); - CompilerType clang_type (GetClangType()); + CompilerType clang_type (GetCompilerType()); //m_value.SetContext (Value::eContextTypeClangType, clang_type); - m_value.SetClangType (clang_type); + m_value.SetCompilerType (clang_type); SetAddressTypeOfChildren(m_parent->GetAddressTypeOfChildren()); if (!CanProvideValue()) { |