1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:27:35 +00:00

LibELF: Make ELF::Loader RefCounted

This commit is contained in:
Itamar 2020-04-17 14:40:38 +03:00 committed by Andreas Kling
parent 5c1b3ce42e
commit edaa9c06d9
5 changed files with 15 additions and 10 deletions

View file

@ -391,7 +391,7 @@ public:
struct ELFBundle {
OwnPtr<Region> region;
OwnPtr<ELF::Loader> elf_loader;
RefPtr<ELF::Loader> elf_loader;
};
OwnPtr<ELFBundle> elf_bundle() const;