From d44f410f1881406ddfd73fd684bb8648e60a1a8b Mon Sep 17 00:00:00 2001 From: Matthew Rodusek <7519129+bitwizeshift@users.noreply.github.com> Date: Mon, 1 Jan 2024 21:54:44 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Remove=20unused=20`use`=20statem?= =?UTF-8?q?ent?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Warnings are triggering on CI of an unused `use` statement in `astd` caused by importing the `macros::*` module. This appears to be an issue stemming from this module only containing macro definitions, which technically only ever exist at root-level due to `#[macro_export]`. This removes the `use` statement since it's effectively not needed. --- frameworks/astd/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/frameworks/astd/src/lib.rs b/frameworks/astd/src/lib.rs index ead6b9c..344f93b 100644 --- a/frameworks/astd/src/lib.rs +++ b/frameworks/astd/src/lib.rs @@ -7,7 +7,6 @@ mod macros; mod source_location; -pub use macros::*; pub use source_location::*; pub mod convert;