From 5350cd9b4f29b209e14f54c61ea2176bc325448f Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Mon, 14 Apr 2025 20:45:14 -0500 Subject: [PATCH] I'm just gonna use proc macros, maybe derive --- src/instructions/mod.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/instructions/mod.rs b/src/instructions/mod.rs index 6b88ddd..342296c 100644 --- a/src/instructions/mod.rs +++ b/src/instructions/mod.rs @@ -7,11 +7,6 @@ use crate::push::state::PushState; #[macro_use] pub mod macros { - #[macro_export] - macro_rules! type_map { - ($x:ident) => {}; - } - /// A macro that makes a push instruction given: the name of the input stack to use, /// the name of the output stack, an internal function to call, the type of a function, /// and the arity of the internal function call.