From fa848985fb90000cb3f99cf4b859c9c2b3da3021 Mon Sep 17 00:00:00 2001 From: rasul Date: Sun, 5 Apr 2020 13:02:07 -0500 Subject: [PATCH] use full path to SendQueue --- src/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros.rs b/src/macros.rs index 7a91e86..e7b6f3d 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -100,7 +100,7 @@ macro_rules! try_send_error { line!(), e ); - return SendQueue::error($i); + return $crate::queue::SendQueue::error($i); } } };