1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:17:35 +00:00

LibGfx: Make RotationDirection an enum class

All code pretended it was one already.

No behavior change.
This commit is contained in:
Nico Weber 2024-02-25 09:23:03 -05:00 committed by Andreas Kling
parent 75e5ed7aea
commit 5b223080ae

View file

@ -84,7 +84,7 @@ inline StorageFormat determine_storage_format(BitmapFormat format)
struct BackingStore;
enum RotationDirection {
enum class RotationDirection {
CounterClockwise,
Clockwise
};