remove unused macro_escape attribute

This commit is contained in:
Sean McArthur
2021-07-21 07:33:26 -07:00
parent b66f3aea99
commit 288a5f086f

View File

@@ -15,7 +15,6 @@ use std::fmt;
/// let buf: [u8; 4] = [0, 0, 0, 1];
/// assert_eq!(1u32, unpack_octets_4!(buf, 0, u32));
/// ```
#[macro_escape]
macro_rules! unpack_octets_4 {
// TODO: Get rid of this macro
($buf:expr, $offset:expr, $tip:ty) => {