From 8896e4968a2edb38aac128917ddf7aa45a972ec3 Mon Sep 17 00:00:00 2001 From: rasul Date: Sun, 5 Apr 2020 12:08:39 -0500 Subject: [PATCH] remove old commented out version of a macro --- src/macros.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/macros.rs b/src/macros.rs index 08df41d..6735cb0 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -99,14 +99,3 @@ macro_rules! try_option_send_error { } }; } - -// #[macro_export] -// macro_rules! try_option_send_error { -// ($i:ident, $e:expr) => { -// if let Ok(Some(r)) = $e { -// r -// } else { -// return SendQueue::error($i); -// } -// }; -// }