From 3194f10ad054af515b0bffc1d43f6b3fe3270eb6 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 15 Jul 2023 09:32:02 +0200 Subject: [PATCH] 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. --- Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp index d250bcf407..c4083b967b 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp @@ -2278,6 +2278,8 @@ Vector> Parser::parse_a_comma_separated_list_of_component return list_of_component_value_lists; } +template Vector> Parser::parse_a_comma_separated_list_of_component_values(TokenStream&); + ElementInlineCSSStyleDeclaration* Parser::parse_as_style_attribute(DOM::Element& element) { auto declarations_and_at_rules = parse_a_list_of_declarations(m_token_stream);