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

LibWeb: Remove "Invalid" StyleValue type

We never actually use this, we always initialize StyleValues with a
proper type.
This commit is contained in:
Sam Atkins 2023-05-06 12:43:29 +01:00 committed by Andreas Kling
parent 3c212c8535
commit 5533413061

View file

@ -115,7 +115,6 @@ public:
Image,
Inherit,
Initial,
Invalid,
Length,
LinearGradient,
ListStyle,
@ -318,7 +317,7 @@ protected:
explicit StyleValue(Type);
private:
Type m_type { Type::Invalid };
Type m_type;
};
template<typename T>