Skip to content

Commit 9acef18

Browse files
committed
fix: removed vtable_address_comparisons allow
1 parent f2e9c23 commit 9acef18

File tree

1 file changed

+0
-1
lines changed
  • components/script/dom/bindings

1 file changed

+0
-1
lines changed

components/script/dom/bindings/root.rs

-1
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@ impl RootCollection {
275275
unsafe fn unroot(&self, object: *const dyn JSTraceable) {
276276
assert_in_script();
277277
let roots = &mut *self.roots.get();
278-
#[allow(clippy::vtable_address_comparisons)]
279278
match roots.iter().rposition(|r| std::ptr::eq(*r, object)) {
280279
Some(idx) => {
281280
roots.remove(idx);

0 commit comments

Comments
 (0)