Skip to content

Commit

Permalink
Temporarily fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lbirkert committed Aug 22, 2024
1 parent 25d6a09 commit 1d469ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qb-mobile/rust/src/api/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use qb_daemon::{daemon::QBDaemon, master::QBMaster};

#[frb(opaque)]
pub struct DaemonWrapper {
daemon: QBDaemon,
_daemon: QBDaemon,
}

impl DaemonWrapper {
Expand All @@ -18,6 +18,6 @@ impl DaemonWrapper {
let mut daemon = QBDaemon::init(master, wrapper).await;
daemon.autostart().await;

Self { daemon }
Self { _daemon: daemon }
}
}

0 comments on commit 1d469ed

Please sign in to comment.