Skip to content

Commit

Permalink
fix(derive): uniformize imports defined in core
Browse files Browse the repository at this point in the history
  • Loading branch information
CBenoit committed Dec 16, 2023
1 parent 2a0077f commit 9273829
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ fn expand_derive_arbitrary(input: syn::DeriveInput) -> Result<TokenStream> {

Ok(quote! {
const _: () = {
std::thread_local! {
::std::thread_local! {
#[allow(non_upper_case_globals)]
static #recursive_count: std::cell::Cell<u32> = std::cell::Cell::new(0);
static #recursive_count: ::core::cell::Cell<u32> = ::core::cell::Cell::new(0);
}

#[automatically_derived]
Expand Down

0 comments on commit 9273829

Please sign in to comment.