diff options
| author | Jim Ingham <jingham@apple.com> | 2011-05-02 18:13:59 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2011-05-02 18:13:59 +0000 |
| commit | 61be0903e5fb48d063fa64024f78f1f30cc446ad (patch) | |
| tree | 1d2d3252ffcf29ae6ecb2fb0d8cae7bb07ea8bca /lldb/source/API/SBValue.cpp | |
| parent | f4258eb48420fb1e80250a9f589f1bb2225462e1 (diff) | |
| download | bcm5719-llvm-61be0903e5fb48d063fa64024f78f1f30cc446ad.tar.gz bcm5719-llvm-61be0903e5fb48d063fa64024f78f1f30cc446ad.zip | |
Adding support for fetching the Dynamic Value for ObjC Objects.
llvm-svn: 130701
Diffstat (limited to 'lldb/source/API/SBValue.cpp')
| -rw-r--r-- | lldb/source/API/SBValue.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |

