Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src-rs/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ mod swift_arg;
mod swift_ret;
mod types;

pub use autorelease::*;
pub use swift::*;
pub use swift_arg::*;
pub use swift_ret::*;
Expand Down
2 changes: 1 addition & 1 deletion src-rs/swift.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub trait SwiftObject {
/// The inner pointer is private,
/// and the returned [`SwiftRef`] is bound to the lifetime of the original [`SRObject`],
/// so if you use `swift-rs` as normal this function should be safe.
unsafe fn swift_ref(&self) -> SwiftRef<Self>
unsafe fn swift_ref(&self) -> SwiftRef<'_, Self>
where
Self: Sized,
{
Expand Down
Loading