Serialization: Fix PackConformance deserialization

This commit is contained in:
Slava Pestov
2023-04-20 00:02:28 -04:00
parent 24b4dd6219
commit 394e3055d1
3 changed files with 8 additions and 8 deletions

View File

@@ -110,6 +110,7 @@ ModuleFile::ModuleFile(std::shared_ptr<const ModuleFileSharedCore> core)
allocateBuffer(Decls, core->Decls);
allocateBuffer(LocalDeclContexts, core->LocalDeclContexts);
allocateBuffer(Conformances, core->Conformances);
allocateBuffer(PackConformances, core->PackConformances);
allocateBuffer(SILLayouts, core->SILLayouts);
allocateBuffer(Types, core->Types);
allocateBuffer(ClangTypes, core->ClangTypes);