From 61be0903e5fb48d063fa64024f78f1f30cc446ad Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Mon, 2 May 2011 18:13:59 +0000 Subject: Adding support for fetching the Dynamic Value for ObjC Objects. llvm-svn: 130701 --- lldb/source/API/SBValue.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/API/SBValue.cpp') diff --git a/lldb/source/API/SBValue.cpp b/lldb/source/API/SBValue.cpp index 6ad6bb99b9d..f499fae145f 100644 --- a/lldb/source/API/SBValue.cpp +++ b/lldb/source/API/SBValue.cpp @@ -357,7 +357,7 @@ SBValue::GetChildAtIndex (uint32_t idx, bool use_dynamic_value) { if (child_sp) { - lldb::ValueObjectSP dynamic_sp = child_sp->GetDynamicValue(true); + lldb::ValueObjectSP dynamic_sp = child_sp->GetDynamicValue (true); if (dynamic_sp) child_sp = dynamic_sp; } @@ -410,7 +410,7 @@ SBValue::GetChildMemberWithName (const char *name, bool use_dynamic_value) { if (child_sp) { - lldb::ValueObjectSP dynamic_sp = child_sp->GetDynamicValue(true); + lldb::ValueObjectSP dynamic_sp = child_sp->GetDynamicValue (true); if (dynamic_sp) child_sp = dynamic_sp; } -- cgit v1.2.3