From 866dcdacfe59f5f448e008fe2c4cb9dfcf72b2ec Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 18 Feb 2014 16:23:10 +0000 Subject: Import lldb as of SVN r201577 (git 2bdc2f6) (A number of files not required for the FreeBSD build have been removed.) Sponsored by: DARPA, AFRL --- source/API/SBType.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/API/SBType.cpp') diff --git a/source/API/SBType.cpp b/source/API/SBType.cpp index 3055c2752083..5ca7ddf3d813 100644 --- a/source/API/SBType.cpp +++ b/source/API/SBType.cpp @@ -185,6 +185,14 @@ SBType::GetReferenceType() return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetReferenceType()))); } +SBType +SBType::GetTypedefedType() +{ + if (!IsValid()) + return SBType(); + return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetTypedefedType()))); +} + SBType SBType::GetDereferencedType() { -- cgit v1.3