1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

LibWeb: Remove unused declaration Node::removed_last_ref()

This commit is contained in:
Andreas Kling 2023-01-11 09:57:53 +01:00
parent 2475f6a641
commit 35ba13802d

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; }