diff options
author | Enrico Granata <egranata@apple.com> | 2015-11-18 19:42:44 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-11-18 19:42:44 +0000 |
commit | 3de08c5f0c972ade61b6dd0ea4561c33e09c58fc (patch) | |
tree | ed4978acf2ee92c75f737db8bcde742ae080005c /lldb/source/API | |
parent | e7891d033e9e8b7b9bb4d75945d4cd218883cc44 (diff) | |
download | bcm5719-llvm-3de08c5f0c972ade61b6dd0ea4561c33e09c58fc.tar.gz bcm5719-llvm-3de08c5f0c972ade61b6dd0ea4561c33e09c58fc.zip |
Reapply r253423 and r253424 (which cleanup the data formatters iteration model, as well as the type X list commands), along with a change by Zachary Turner to bypass a MSVC bug with SFINAE
llvm-svn: 253493
Diffstat (limited to 'lldb/source/API')
-rw-r--r-- | lldb/source/API/SBTypeCategory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBTypeCategory.cpp b/lldb/source/API/SBTypeCategory.cpp index 287edfe140b..33dada8da39 100644 --- a/lldb/source/API/SBTypeCategory.cpp +++ b/lldb/source/API/SBTypeCategory.cpp @@ -180,7 +180,7 @@ SBTypeCategory::GetFilterForType (SBTypeNameSpecifier spec) if (!spec.IsValid()) return SBTypeFilter(); - lldb::SyntheticChildrenSP children_sp; + lldb::TypeFilterImplSP children_sp; if (spec.IsRegex()) m_opaque_sp->GetRegexTypeFiltersContainer()->GetExact(ConstString(spec.GetName()), children_sp); |