LibWeb/CSS: Use SelectorList type instead of Vector<NNRP<Selector>>

This commit is contained in:
Sam Atkins 2024-10-17 12:01:13 +01:00 committed by Andreas Kling
commit 74c448d744
Notes: github-actions[bot] 2024-10-17 18:57:20 +00:00
5 changed files with 9 additions and 9 deletions

View file

@ -257,7 +257,7 @@ private:
Array<u32, 8> m_ancestor_hashes;
};
String serialize_a_group_of_selectors(Vector<NonnullRefPtr<Selector>> const& selectors);
String serialize_a_group_of_selectors(SelectorList const& selectors);
}