Skip to content
Snippets Groups Projects

Fix clippy warnings after upgrade to Rust 1.77

Merged Philippe Normand requested to merge philn/gst-plugins-rs:clippy-rust-1-77 into main
All threads resolved!
Files
18
@@ -57,7 +57,7 @@ const READ: usize = 0;
const WRITE: usize = 1;
thread_local! {
static CURRENT_REACTOR: RefCell<Option<Reactor>> = RefCell::new(None);
static CURRENT_REACTOR: RefCell<Option<Reactor>> = const { RefCell::new(None) };
}
#[derive(Debug)]
Loading