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 32
32
using namespace swift ;
33
33
using namespace irgen ;
34
34
35
+ OutliningMetadataCollector::OutliningMetadataCollector (
36
+ IRGenFunction &IGF, LayoutIsNeeded_t needsLayout,
37
+ DeinitIsNeeded_t needsDeinitTypes)
38
+ : IGF(IGF), needsLayout(needsLayout), needsDeinit(needsDeinitTypes) {}
39
+
35
40
void OutliningMetadataCollector::collectTypeMetadata (SILType ty) {
36
41
// If the type has no archetypes, we can emit it from scratch in the callee.
37
42
if (!ty.hasArchetype ()) {
Original file line number Diff line number Diff line change @@ -70,8 +70,7 @@ class OutliningMetadataCollector {
70
70
71
71
public:
72
72
OutliningMetadataCollector (IRGenFunction &IGF, LayoutIsNeeded_t needsLayout,
73
- DeinitIsNeeded_t needsDeinitTypes)
74
- : IGF(IGF), needsLayout(needsLayout), needsDeinit(needsDeinitTypes) {}
73
+ DeinitIsNeeded_t needsDeinitTypes);
75
74
76
75
void collectTypeMetadata (SILType type);
77
76
You can’t perform that action at this time.
0 commit comments