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

ELF: Run clang-format on everything.

This commit is contained in:
Andreas Kling 2019-06-07 17:12:30 +02:00
parent e42c3b4fd7
commit 9145917bf0
5 changed files with 551 additions and 547 deletions

View file

@ -5,7 +5,7 @@
#include <AK/OwnPtr.h>
#include <AK/Vector.h>
#if defined(KERNEL)
#include <Kernel/VirtualAddress.h>
# include <Kernel/VirtualAddress.h>
#endif
#include <AK/ELF/ELFImage.h>
@ -34,7 +34,7 @@ private:
char* area_for_section_name(const char*);
struct PtrAndSize {
PtrAndSize() { }
PtrAndSize() {}
PtrAndSize(char* p, unsigned s)
: ptr(p)
, size(s)
@ -52,4 +52,3 @@ private:
};
mutable Vector<SortedSymbol> m_sorted_symbols;
};