Skip to content

Commit

Permalink
🩹 Fix bad import in astd macro
Browse files Browse the repository at this point in the history
The `astd::macros::transparent` macro was hard-coded to using the
`::foundation` crate, which was the name of `astd` before the rename.
Unfortunately this breaks uses, so this fixes it.
  • Loading branch information
bitwizeshift committed Apr 14, 2024
1 parent 8a7429d commit 6f05efb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frameworks/astd/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ macro_rules! transparent {
}
}

impl foundation::Take<$Inner> for $Outter {
impl ::astd::convert::Take<$Inner> for $Outter {
unsafe fn take(self) -> $Inner {
self.$Ex
}
Expand Down

0 comments on commit 6f05efb

Please sign in to comment.