From c04737ce20415b360a308ca3a6b8fa6a16b454fa Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Sun, 31 Dec 2006 15:51:17 +0100 Subject: [PATCH] Cosmetic cleanup. --- src/p_elf_enum.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/p_elf_enum.h b/src/p_elf_enum.h index ea33aab6..2864603f 100644 --- a/src/p_elf_enum.h +++ b/src/p_elf_enum.h @@ -28,9 +28,9 @@ /************************************************************************* // Use the preprocessor to work around -// - that the types using these enums have to be PODs, and -// deriving from an empty base class does not yield a POD -// any more +// - that the types embedding these enums have to be PODs, and +// deriving from an empty base class (which is the ususal C++ way +// of "importing" enums) does not yield a POD any more // - that older compilers do not correctly perform EBCO **************************************************************************/ @@ -49,15 +49,15 @@ }; enum { // e_ident[EI_DATA] ELFDATA2LSB = 1, /* 2's complement, little endian */ - ELFDATA2MSB = 2 /* 2's complement, big endian */ + ELFDATA2MSB = 2, /* 2's complement, big endian */ }; enum { // e_ident[EI_OSABI] - ELFOSABI_NONE = 0, // == ELFOSABI_SYSV - ELFOSABI_NETBSD = 2, - ELFOSABI_LINUX = 3, + ELFOSABI_NONE = 0, // == ELFOSABI_SYSV + ELFOSABI_NETBSD = 2, + ELFOSABI_LINUX = 3, ELFOSABI_FREEBSD = 9, ELFOSABI_OPENBSD = 12, - ELFOSABI_ARM = 97 + ELFOSABI_ARM = 97, }; enum { // e_type ET_NONE = 0, /* No file type */