mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-19 16:01:23 +00:00
Fix warning on ATOMIC_USIZE_INIT & ATOMIC_BOOL_INIT
This commit is contained in:
@ -9,7 +9,7 @@ extern crate quote;
|
||||
use proc_macro2::*;
|
||||
use std::sync::atomic::*;
|
||||
|
||||
static CNT: AtomicUsize = ATOMIC_USIZE_INIT;
|
||||
static CNT: AtomicUsize = AtomicUsize::new(0);
|
||||
|
||||
#[proc_macro_attribute]
|
||||
pub fn wasm_bindgen_test(
|
||||
|
Reference in New Issue
Block a user