mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
LibWeb: Explicitly instantiate a CSS parser template function
We're gonna call parse_a_comma_separated_list_of_component_values from another cpp file soon, so let's prepare for that by instantiating the specific version we need.
This commit is contained in:
@@ -2278,6 +2278,8 @@ Vector<Vector<ComponentValue>> Parser::parse_a_comma_separated_list_of_component
|
||||
return list_of_component_value_lists;
|
||||
}
|
||||
|
||||
template Vector<Vector<ComponentValue>> Parser::parse_a_comma_separated_list_of_component_values(TokenStream<ComponentValue>&);
|
||||
|
||||
ElementInlineCSSStyleDeclaration* Parser::parse_as_style_attribute(DOM::Element& element)
|
||||
{
|
||||
auto declarations_and_at_rules = parse_a_list_of_declarations(m_token_stream);
|
||||
|
||||
Reference in New Issue
Block a user