From cdbdc334ded557637c776c4048ddc091cadd6747 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Fri, 22 Mar 2024 11:59:29 -0400 Subject: [PATCH] LibGfx/ISOBMFF: Alphabetize box type ENUMERATE_ONE() lines --- Userland/Libraries/LibGfx/ImageFormats/ISOBMFF/Enums.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Userland/Libraries/LibGfx/ImageFormats/ISOBMFF/Enums.h b/Userland/Libraries/LibGfx/ImageFormats/ISOBMFF/Enums.h index 64fbb9e900a..94ff3105c11 100644 --- a/Userland/Libraries/LibGfx/ImageFormats/ISOBMFF/Enums.h +++ b/Userland/Libraries/LibGfx/ImageFormats/ISOBMFF/Enums.h @@ -14,11 +14,11 @@ namespace Gfx::ISOBMFF { // Define all Box types: #define ENUMERATE_ALL() \ + ENUMERATE_ONE(FreeBox, "free") \ ENUMERATE_ONE(FileTypeBox, "ftyp") \ - ENUMERATE_ONE(MetaBox, "meta") \ - ENUMERATE_ONE(MovieBox, "moov") \ ENUMERATE_ONE(MediaDataBox, "mdat") \ - ENUMERATE_ONE(FreeBox, "free") + ENUMERATE_ONE(MetaBox, "meta") \ + ENUMERATE_ONE(MovieBox, "moov") enum class BoxType : u32 { None = 0,