From e7dc5c0939d30ccba98418c42799c4e39f646d23 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Mon, 7 Jun 2021 00:10:54 +0200 Subject: fmt: make all macros `macro_rules` so scoping is consistent. --- embassy-net/src/stack.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'embassy-net/src/stack.rs') diff --git a/embassy-net/src/stack.rs b/embassy-net/src/stack.rs index e436beb1e..a38f00958 100644 --- a/embassy-net/src/stack.rs +++ b/embassy-net/src/stack.rs @@ -20,7 +20,6 @@ use smoltcp::wire::{IpAddress, IpCidr, Ipv4Address, Ipv4Cidr}; use crate::config::Configurator; use crate::config::Event; use crate::device::{Device, DeviceAdapter, LinkState}; -use crate::fmt::*; use crate::{Interface, SocketSet}; const ADDRESSES_LEN: usize = 1; -- cgit