From 026426e6c3c3ad3bb1b8f13e1ca4abd0d6b0075b Mon Sep 17 00:00:00 2001 From: Stu Black Date: Sat, 25 Oct 2025 12:41:52 -0400 Subject: [PATCH] Remove VoidPointer impls that were commented out in previous commit. --- wutil-rs/src/hash_table.rs | 16 ---------------- 1 file changed, 16 deletions(-) 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);