Skip to content

Commit

Permalink
🩹 Remove unused use statement
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bitwizeshift committed Jan 2, 2024
1 parent 4a888e9 commit d44f410
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion frameworks/astd/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
mod macros;
mod source_location;

pub use macros::*;
pub use source_location::*;

pub mod convert;
Expand Down

0 comments on commit d44f410

Please sign in to comment.