diff options
Diffstat (limited to 'test_napi/src/async.rs')
-rw-r--r-- | test_napi/src/async.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test_napi/src/async.rs b/test_napi/src/async.rs index 0df4990ab..51e6edac9 100644 --- a/test_napi/src/async.rs +++ b/test_napi/src/async.rs @@ -6,7 +6,8 @@ use crate::napi_new_property; use napi_sys::Status::napi_ok; use napi_sys::ValueType::napi_function; use napi_sys::*; -use std::os::raw::{c_char, c_void}; +use std::os::raw::c_char; +use std::os::raw::c_void; use std::ptr; pub struct Baton { |