diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/realm.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/realm.rs b/core/realm.rs index 8e2d932b5..08a550294 100644 --- a/core/realm.rs +++ b/core/realm.rs @@ -10,7 +10,6 @@ use std::collections::HashMap; use std::collections::HashSet; use std::hash::BuildHasherDefault; use std::hash::Hasher; -use std::marker::PhantomData; use std::option::Option; use std::rc::Rc; use v8::HandleScope; @@ -19,7 +18,7 @@ use v8::Local; // Hasher used for `unrefed_ops`. Since these are rolling i32, there's no // need to actually hash them. #[derive(Default)] -pub(crate) struct IdentityHasher(u64, PhantomData<i32>); +pub(crate) struct IdentityHasher(u64); impl Hasher for IdentityHasher { fn write_i32(&mut self, i: i32) { |