Clippy warnings (#305)

This commit is contained in:
Nikolay Kim 2024-03-06 20:33:20 +06:00
parent 68e158d877
commit 661c5ea1fa
62 changed files with 103 additions and 110 deletions

View file

@ -1,3 +1,4 @@
#![allow(clippy::let_underscore_future)]
use std::any::{Any, TypeId};
use std::sync::atomic::{AtomicUsize, Ordering};
use std::task::{Context, Poll};
@ -9,7 +10,7 @@ use futures_core::stream::Stream;
use crate::system::System;
thread_local!(
static ADDR: RefCell<Option<Arbiter>> = RefCell::new(None);
static ADDR: RefCell<Option<Arbiter>> = const { RefCell::new(None) };
static STORAGE: RefCell<HashMap<TypeId, Box<dyn Any>>> = RefCell::new(HashMap::new());
);
@ -103,7 +104,7 @@ impl Arbiter {
crate::block_on(async move {
// start arbiter controller
crate::spawn(ArbiterController {
let _ = crate::spawn(ArbiterController {
stop: Some(stop),
rx: Box::pin(arb_rx),
});
@ -268,7 +269,7 @@ impl Future for ArbiterController {
return Poll::Ready(());
}
ArbiterCommand::Execute(fut) => {
crate::spawn(fut);
let _ = crate::spawn(fut);
}
ArbiterCommand::ExecuteFn(f) => {
f.call_box();

View file

@ -1,3 +1,4 @@
#![allow(clippy::let_underscore_future)]
use std::{cell::RefCell, future::Future, io, rc::Rc};
use async_channel::unbounded;
@ -159,8 +160,8 @@ where
let result = Rc::new(RefCell::new(None));
let result_inner = result.clone();
crate::block_on(Box::pin(async move {
crate::spawn(arb);
crate::spawn(arb_controller);
let _ = crate::spawn(arb);
let _ = crate::spawn(arb_controller);
if let Err(e) = f() {
*result_inner.borrow_mut() = Some(Err(e));
} else {

View file

@ -16,7 +16,7 @@ pub struct System {
}
thread_local!(
static CURRENT: RefCell<Option<System>> = RefCell::new(None);
static CURRENT: RefCell<Option<System>> = const { RefCell::new(None) };
);
impl System {