Cleanup malloc_size_of for NodeIterator and HTMLCollection (#34118)

Signed-off-by: Wulan Seruniati Salim <wulanseruniati@gmail.com>
This commit is contained in:
Wulan Seruniati Salim 2024-11-04 03:28:55 +07:00 committed by GitHub
parent a2af619009
commit e93544c003
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ pub struct NodeIterator {
reference_node: MutDom<Node>,
pointer_before_reference_node: Cell<bool>,
what_to_show: u32,
#[ignore_malloc_size_of = "Can't measure due to #6870"]
#[ignore_malloc_size_of = "Rc<NodeFilter> has shared ownership, so its size cannot be measured accurately"]
filter: Filter,
active: Cell<bool>,
}