diff --git a/wutil-rs/src/hash_table.rs b/wutil-rs/src/hash_table.rs index 62424714..77c20823 100644 --- a/wutil-rs/src/hash_table.rs +++ b/wutil-rs/src/hash_table.rs @@ -69,22 +69,6 @@ impl HashTable { } } -// #[derive(Debug, Eq, PartialEq, Hash)] -// #[repr(transparent)] -// pub struct VoidPointer(*mut u8); - -// impl Drop for VoidPointer { -// fn drop(&mut self) { -// unsafe { wfree(self.0.cast::()) } -// } -// } - -// impl Borrow<*mut u8> for VoidPointer { -// fn borrow(&self) -> &*mut u8 { -// &self.0 -// } -// } - #[derive(Debug)] #[repr(transparent)] pub struct StringKey(*const u8);