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

LibJS: Give Shape::TransitionType an underlying 8-bit type

This shrinks Shape by 8 bytes. :^)
This commit is contained in:
Andreas Kling 2023-12-12 15:26:46 +01:00
parent 8dfca6c464
commit ed1bee222b

View file

@ -43,7 +43,7 @@ class Shape final
public:
virtual ~Shape() override = default;
enum class TransitionType {
enum class TransitionType : u8 {
Invalid,
Put,
Configure,