mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:17:44 +00:00
LibELF: Move ELF classes into namespace ELF
This is for consistency with other namespace changes that were made a while back to the other libraries :)
This commit is contained in:
parent
6b0f47683c
commit
21b5909dc6
18 changed files with 203 additions and 169 deletions
|
@ -41,7 +41,9 @@
|
|||
#include <Kernel/VM/RangeAllocator.h>
|
||||
#include <LibC/signal_numbers.h>
|
||||
|
||||
class ELFLoader;
|
||||
namespace ELF {
|
||||
class Loader;
|
||||
}
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
|
@ -387,7 +389,7 @@ public:
|
|||
|
||||
struct ELFBundle {
|
||||
OwnPtr<Region> region;
|
||||
OwnPtr<ELFLoader> elf_loader;
|
||||
OwnPtr<ELF::Loader> elf_loader;
|
||||
};
|
||||
OwnPtr<ELFBundle> elf_bundle() const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue