From 5b223080aea8d1d4f734f40db6503b9c2a2824b9 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sun, 25 Feb 2024 09:23:03 -0500 Subject: [PATCH] LibGfx: Make RotationDirection an enum class All code pretended it was one already. No behavior change. --- Userland/Libraries/LibGfx/Bitmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGfx/Bitmap.h b/Userland/Libraries/LibGfx/Bitmap.h index 24f9470087..c14d7d8d6f 100644 --- a/Userland/Libraries/LibGfx/Bitmap.h +++ b/Userland/Libraries/LibGfx/Bitmap.h @@ -84,7 +84,7 @@ inline StorageFormat determine_storage_format(BitmapFormat format) struct BackingStore; -enum RotationDirection { +enum class RotationDirection { CounterClockwise, Clockwise };