mirror of
https://github.com/salsa-rs/salsa.git
synced 2024-11-24 20:20:26 +00:00
clippy
This commit is contained in:
parent
83de15ff3c
commit
6066e0b536
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ struct MyTracked<'db> {
|
|||
}
|
||||
|
||||
thread_local! {
|
||||
static DROPPED: std::cell::RefCell<Vec<u32>> = std::cell::RefCell::new(vec![]);
|
||||
static DROPPED: std::cell::RefCell<Vec<u32>> = const { std::cell::RefCell::new(vec![]) };
|
||||
}
|
||||
|
||||
fn dropped() -> Vec<u32> {
|
||||
|
|
Loading…
Reference in a new issue