diff options
author | Aapo Alasuutari <aapo.alasuutari@gmail.com> | 2023-02-28 08:26:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-28 08:26:48 +0200 |
commit | 4835098cf7ad2dd0641c14a2adf44ce233ba286c (patch) | |
tree | d84626d2e7e95c8276d289422ef6f18bc49b910e /ext/ffi/callback.rs | |
parent | 7c090b1b14e6b5000dbbed434525387c414ca62c (diff) |
fix(ext/ffi): Remove deno_core::OpState qualifiers, fix ops returning pointer defaults (#17959)
Diffstat (limited to 'ext/ffi/callback.rs')
-rw-r--r-- | ext/ffi/callback.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ffi/callback.rs b/ext/ffi/callback.rs index ae2780391..bd4d6a545 100644 --- a/ext/ffi/callback.rs +++ b/ext/ffi/callback.rs @@ -540,7 +540,7 @@ pub struct RegisterCallbackArgs { #[op(v8)] pub fn op_ffi_unsafe_callback_create<FP, 'scope>( - state: &mut deno_core::OpState, + state: &mut OpState, scope: &mut v8::HandleScope<'scope>, args: RegisterCallbackArgs, cb: serde_v8::Value<'scope>, |