Skip to content

Commit

Permalink
Fix lint issue in FFI bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
rygine committed Jun 28, 2024
1 parent 8057bf8 commit e702567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings_ffi/src/v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ pub trait FfiV2SubscriptionCallback: Send + Sync {
pub struct FfiV2Subscription {
tx: mpsc::Sender<FfiV2SubscribeRequest>,
abort: AbortHandle,
// we require Arc<Mutex<>> here because uniffi doesn't like &mut self, or the owned version of self on exported methods
// we require Arc<Mutex<>> here because uniffi doesn't like &mut self, or the owned version of self on exported methods
#[allow(clippy::type_complexity)]
handle: Arc<Mutex<Option<JoinHandle<()>>>>,
}
Expand Down

0 comments on commit e702567

Please sign in to comment.