From c7c30eb52832dc20a7afe6640ac4ab361ff9b9fe Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Mon, 8 Jun 2015 23:38:06 +0000 Subject: Revert "Introduce a TypeSystem interface to support adding non-clang languages." This seems to break expression evaluation on the linux build. llvm-svn: 239366 --- lldb/source/Core/ValueObjectDynamicValue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Core/ValueObjectDynamicValue.cpp') 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())*/ -- cgit v1.2.3