LibWeb: Remove unused declaration Node::removed_last_ref()

This commit is contained in:
Andreas Kling 2023-01-11 09:57:53 +01:00
commit 35ba13802d
Notes: sideshowbarker 2024-07-17 05:06:13 +09:00

View file

@ -52,9 +52,6 @@ public:
virtual ~Node();
// FIXME: Move cleanup to the regular destructor.
void removed_last_ref();
NodeType type() const { return m_type; }
bool is_element() const { return type() == NodeType::ELEMENT_NODE; }
bool is_text() const { return type() == NodeType::TEXT_NODE; }