Skip to content

Commit 5c7a7a0

Browse files
committed
Fix clippy workspace errors
1 parent a5f07b6 commit 5c7a7a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unit-gen/src/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use std::cell::RefCell;
1616
use std::str::FromStr;
1717

1818
thread_local! {
19-
pub (super) static QUANTITY: RefCell<Option<String>> = RefCell::new(None);
19+
pub (super) static QUANTITY: RefCell<Option<String>> = const { RefCell::new(None) };
2020
}
2121

2222
fn parse_space<'a>() -> Parser<'a, u8, ()> {

0 commit comments

Comments
 (0)