From 3dee1f4f7fcb59f6986fc03a20284b81cfc83b3d Mon Sep 17 00:00:00 2001 From: Alex Fischman Date: Mon, 7 Oct 2024 15:31:06 -0700 Subject: [PATCH] Remove special names field --- src/util.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/util.rs b/src/util.rs index 105bec6d..47191c23 100644 --- a/src/util.rs +++ b/src/util.rs @@ -68,7 +68,6 @@ where pub struct SymbolGen { gen: usize, reserved_string: String, - special_reserved: HashMap, } impl SymbolGen { @@ -76,7 +75,6 @@ impl SymbolGen { Self { gen: 0, reserved_string, - special_reserved: HashMap::default(), } }