ladybird/Userland/Libraries/LibELF
asynts acdcf59a33 Everywhere: Remove unnecessary debug comments.
It would be tempting to uncomment these statements, but that won't work
with the new changes.

This was done with the following commands:

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/#define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/#define/ { toggle = 1 }' {} \;

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/ #define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/ #define/ { toggle = 1 }' {} \;
2021-01-25 09:47:36 +01:00
..
Arch/i386 Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
AuxiliaryVector.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
CMakeLists.txt Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
CoreDump.h Kernel: Set "pledge_violation" coredump metadata in REQUIRE_PROMISE() 2021-01-20 21:01:15 +01:00
DynamicLinker.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
DynamicLinker.h Meta: Fix silly copyright line 2021-01-22 11:28:07 +01:00
DynamicLoader.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
DynamicLoader.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
DynamicObject.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
DynamicObject.h LibELF: Remove unused m_global_symbol_lookup_func from DynamicObject 2021-01-18 19:17:52 +01:00
exec_elf.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Image.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
Image.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Validation.cpp LibELF: validate_program_headers: Validate PT_INTERP header p_filesz > 1 2021-01-16 22:39:26 +01:00
Validation.h Libraries: Add missing headers 2021-01-22 21:49:54 +01:00