File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 3232using namespace swift ;
3333using namespace irgen ;
3434
35+ OutliningMetadataCollector::OutliningMetadataCollector (
36+ IRGenFunction &IGF, LayoutIsNeeded_t needsLayout,
37+ DeinitIsNeeded_t needsDeinitTypes)
38+ : IGF(IGF), needsLayout(needsLayout), needsDeinit(needsDeinitTypes) {}
39+
3540void OutliningMetadataCollector::collectTypeMetadata (SILType ty) {
3641 // If the type has no archetypes, we can emit it from scratch in the callee.
3742 if (!ty.hasArchetype ()) {
Original file line number Diff line number Diff line change @@ -70,8 +70,7 @@ class OutliningMetadataCollector {
7070
7171public:
7272 OutliningMetadataCollector (IRGenFunction &IGF, LayoutIsNeeded_t needsLayout,
73- DeinitIsNeeded_t needsDeinitTypes)
74- : IGF(IGF), needsLayout(needsLayout), needsDeinit(needsDeinitTypes) {}
73+ DeinitIsNeeded_t needsDeinitTypes);
7574
7675 void collectTypeMetadata (SILType type);
7776
You can’t perform that action at this time.
0 commit comments