diff options
Diffstat (limited to 'lldb/source/Core/ValueObjectDynamicValue.cpp')
-rw-r--r-- | lldb/source/Core/ValueObjectDynamicValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ValueObjectDynamicValue.cpp b/lldb/source/Core/ValueObjectDynamicValue.cpp index 9eaa6c3756d..89b98a1db1b 100644 --- a/lldb/source/Core/ValueObjectDynamicValue.cpp +++ b/lldb/source/Core/ValueObjectDynamicValue.cpp @@ -154,7 +154,7 @@ FixupTypeAndOrName (const TypeAndOrName& type_andor_name, if (parent.IsPointerType()) corrected_type = orig_type.GetPointerType (); else if (parent.IsPointerOrReferenceType()) - corrected_type = ClangASTContext::GetLValueReferenceType(orig_type); + corrected_type = orig_type.GetLValueReferenceType (); ret.SetClangASTType(corrected_type); } else /*if (m_dynamic_type_info.HasName())*/ |