summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibELF
diff options
context:
space:
mode:
authorWilliam McPherson <willmcpherson2@gmail.com>2021-03-04 19:15:17 +1100
committerAndreas Kling <kling@serenityos.org>2021-03-04 11:01:48 +0100
commit2479ead718274ddb82da2b24e48ab0deabb7cc3c (patch)
treedd77b8f9541d77e60deded62e3d588dc1263940d /Userland/Libraries/LibELF
parent2119c9e801ebc49ad61d181aaa8fcca1db3aec82 (diff)
downloadserenity-2479ead718274ddb82da2b24e48ab0deabb7cc3c.zip
Everywhere: Remove unnecessary `clang-format off`s
Mostly due to the fact that clang-format allows aligned comments via AlignTrailingComments. We could also use raw string literals in inline asm, which clang-format deals with properly (and would be nicer in a lot of places).
Diffstat (limited to 'Userland/Libraries/LibELF')
-rw-r--r--Userland/Libraries/LibELF/AuxiliaryVector.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibELF/AuxiliaryVector.h b/Userland/Libraries/LibELF/AuxiliaryVector.h
index 24a5f0924c..57194f631e 100644
--- a/Userland/Libraries/LibELF/AuxiliaryVector.h
+++ b/Userland/Libraries/LibELF/AuxiliaryVector.h
@@ -40,7 +40,6 @@ typedef struct
} a_un;
} auxv_t;
-// clang-format off
#define AT_NULL 0 /* No length, last entry's a_type has this value */
#define AT_IGNORE 1 /* Entry has no meaning, a_un undefined */
#define AT_EXECFD 2 /* a_val contains a file descriptor of the main program image */
@@ -66,7 +65,6 @@ typedef struct
#define AT_EXECFN 31 /* a_ptr points to file name of executed program */
#define AT_EXE_BASE 32 /* a_ptr holds base address where main program was loaded into memory */
#define AT_EXE_SIZE 33 /* a_val holds the size of the main program in memory */
-// clang-format on
namespace ELF {