Rename unsafe_impl_unborrow to impl_unborrow

This commit is contained in:
Dario Nieuwenhuis
2022-07-22 22:00:12 +02:00
parent f9f2de3dfb
commit be6408e202
10 changed files with 25 additions and 36 deletions

View File

@ -21,7 +21,7 @@ macro_rules! peripherals {
}
$(#[$cfg])?
$crate::unsafe_impl_unborrow!($name);
$crate::impl_unborrow!($name);
)*
}
@ -80,7 +80,7 @@ macro_rules! unborrow {
}
#[macro_export]
macro_rules! unsafe_impl_unborrow {
macro_rules! impl_unborrow {
($type:ident) => {
impl $crate::Unborrow for $type {
type Target = $type;