From 9130ecfd5e318eb88f02c688ec5a7fc9a76455ff Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Tue, 15 Feb 2022 18:30:01 +0000 Subject: [PATCH] LibWeb: Remove unused HTMLParser function declaration There is no implementation of this function: HTMLParser::stack_of_open_elements_has_element_with_tag_name_in_scope --- Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.h b/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.h index 9805e43094..683ea61dda 100644 --- a/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.h +++ b/Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.h @@ -100,7 +100,6 @@ private: void generate_implied_end_tags(const FlyString& exception = {}); void generate_all_implied_end_tags_thoroughly(); - bool stack_of_open_elements_has_element_with_tag_name_in_scope(const FlyString& tag_name); NonnullRefPtr create_element_for(const HTMLToken&, const FlyString& namespace_); struct AdjustedInsertionLocation {