aboutsummaryrefslogtreecommitdiff
path: root/source/Core/ValueObjectSyntheticFilter.cpp
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2013-11-06 16:48:53 +0000
committerEd Maste <emaste@FreeBSD.org>2013-11-06 16:48:53 +0000
commitf21a844f60ae6c74fcf1fddca32461acce3c1ee0 (patch)
tree56d79f94966870db1cecd65a7264510a25fd1cba /source/Core/ValueObjectSyntheticFilter.cpp
parent37d22554be9f5a677dad2a95b7ef22fe59c66a8a (diff)
downloadsrc-f21a844f60ae6c74fcf1fddca32461acce3c1ee0.tar.gz
src-f21a844f60ae6c74fcf1fddca32461acce3c1ee0.zip
Import lldb as of SVN r194122vendor/lldb/lldb-r194122
Sponsored by: DARPA, AFRL
Notes
Notes: svn path=/vendor/lldb/dist/; revision=257752 svn path=/vendor/lldb/lldb-r194122/; revision=257753; tag=vendor/lldb/lldb-r194122
Diffstat (limited to 'source/Core/ValueObjectSyntheticFilter.cpp')
-rw-r--r--source/Core/ValueObjectSyntheticFilter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/Core/ValueObjectSyntheticFilter.cpp b/source/Core/ValueObjectSyntheticFilter.cpp
index 522ca082a691..5767466f509d 100644
--- a/source/Core/ValueObjectSyntheticFilter.cpp
+++ b/source/Core/ValueObjectSyntheticFilter.cpp
@@ -30,19 +30,19 @@ public:
size_t
CalculateNumChildren()
{
- return 0;
+ return m_backend.GetNumChildren();
}
lldb::ValueObjectSP
GetChildAtIndex (size_t idx)
{
- return lldb::ValueObjectSP();
+ return m_backend.GetChildAtIndex(idx, true);
}
size_t
GetIndexOfChildWithName (const ConstString &name)
{
- return UINT32_MAX;
+ return m_backend.GetIndexOfChildWithName(name);
}
bool