mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:57:35 +00:00
LibJS: Give Shape::TransitionType an underlying 8-bit type
This shrinks Shape by 8 bytes. :^)
This commit is contained in:
parent
8dfca6c464
commit
ed1bee222b
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ class Shape final
|
||||||
public:
|
public:
|
||||||
virtual ~Shape() override = default;
|
virtual ~Shape() override = default;
|
||||||
|
|
||||||
enum class TransitionType {
|
enum class TransitionType : u8 {
|
||||||
Invalid,
|
Invalid,
|
||||||
Put,
|
Put,
|
||||||
Configure,
|
Configure,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue