diff --git a/crates/objc2/src/rc/allocated.rs b/crates/objc2/src/rc/allocated_partial_init.rs similarity index 100% rename from crates/objc2/src/rc/allocated.rs rename to crates/objc2/src/rc/allocated_partial_init.rs diff --git a/crates/objc2/src/rc/mod.rs b/crates/objc2/src/rc/mod.rs index 968707987..da9c80fb3 100644 --- a/crates/objc2/src/rc/mod.rs +++ b/crates/objc2/src/rc/mod.rs @@ -48,7 +48,7 @@ //! assert!(weak.load().is_none()); //! ``` -mod allocated; +mod allocated_partial_init; mod autorelease; mod id; mod id_forwarding_impls; @@ -56,7 +56,7 @@ mod id_traits; mod test_object; mod weak_id; -pub use self::allocated::{Allocated, PartialInit}; +pub use self::allocated_partial_init::{Allocated, PartialInit}; pub use self::autorelease::{ autoreleasepool, autoreleasepool_leaking, AutoreleasePool, AutoreleaseSafe, };