diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-08-27 02:35:45 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-08-27 02:35:45 -0600 |
commit | 532fd19d69fd11d06bca7539c722a46fab2c4419 (patch) | |
tree | 0fc55c581d4430a31ed496f058eda078ef7bf392 /components/script/dom/htmlcollection.rs | |
parent | a897795dabf8d84c2da2935c54346a75987bcec5 (diff) | |
parent | fd87c8cb3ee5ac2be258e0420420c228299c90e3 (diff) | |
download | servo-532fd19d69fd11d06bca7539c722a46fab2c4419.tar.gz servo-532fd19d69fd11d06bca7539c722a46fab2c4419.zip |
Auto merge of #7361 - jxs:master, r=Ms2ger
make dom_struct derive HeapSizeOf
closes #7357
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7361)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/htmlcollection.rs')
-rw-r--r-- | components/script/dom/htmlcollection.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/components/script/dom/htmlcollection.rs b/components/script/dom/htmlcollection.rs index f31dc1894d3..142bc6d73ef 100644 --- a/components/script/dom/htmlcollection.rs +++ b/components/script/dom/htmlcollection.rs @@ -26,7 +26,6 @@ pub trait CollectionFilter : JSTraceable { pub struct Collection(JS<Node>, Box<CollectionFilter + 'static>); #[dom_struct] -#[derive(HeapSizeOf)] pub struct HTMLCollection { reflector_: Reflector, #[ignore_heap_size_of = "Contains a trait object; can't measure due to #6870"] |