LibWeb/CSS: Remove unused ParseError::InternalError

This commit is contained in:
Sam Atkins 2025-07-21 13:42:41 +01:00
commit b7a108d7cb
Notes: github-actions[bot] 2025-08-04 09:52:57 +00:00

View file

@ -149,9 +149,8 @@ public:
private:
Parser(ParsingParams const&, Vector<Token>);
enum class ParseError {
enum class ParseError : u8 {
IncludesIgnoredVendorPrefix,
InternalError,
SyntaxError,
};
template<typename T>