Revert 2 commits breaking the MSVC build
Revert "Remove a few vestigial typedefs from the old world" This reverts commit 05872cda2a00fbd988c4fc761b1f87fe9edce224. Revert "Cleanup the type X list commands to use the new ForEach goodness" This reverts commit 85b1d83819a22cdc9ef12f58fd4fa92b473a4f81. llvm-svn: 253455
This commit is contained in:
@@ -225,6 +225,12 @@ DataVisualization::Categories::DisableStar ()
|
||||
GetFormatManager().DisableAllCategories();
|
||||
}
|
||||
|
||||
void
|
||||
DataVisualization::Categories::LoopThrough (FormatManager::CategoryCallback callback, void* callback_baton)
|
||||
{
|
||||
GetFormatManager().LoopThroughCategories(callback, callback_baton);
|
||||
}
|
||||
|
||||
void
|
||||
DataVisualization::Categories::ForEach (TypeCategoryMap::ForEachCallback callback)
|
||||
{
|
||||
@@ -268,9 +274,9 @@ DataVisualization::NamedSummaryFormats::Clear ()
|
||||
}
|
||||
|
||||
void
|
||||
DataVisualization::NamedSummaryFormats::ForEach (std::function<bool(ConstString, const lldb::TypeSummaryImplSP&)> callback)
|
||||
DataVisualization::NamedSummaryFormats::LoopThrough (TypeSummaryImpl::SummaryCallback callback, void* callback_baton)
|
||||
{
|
||||
GetFormatManager().GetNamedSummaryContainer().ForEach(callback);
|
||||
GetFormatManager().GetNamedSummaryContainer().LoopThrough(callback, callback_baton);
|
||||
}
|
||||
|
||||
uint32_t
|
||||
|
||||
Reference in New Issue
Block a user