diff options
author | Bert Belder <bertbelder@gmail.com> | 2020-06-20 13:18:08 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2020-06-26 20:17:15 +0200 |
commit | e10d74a3d3981310819299d21f129d6b8bf81d79 (patch) | |
tree | 113b78c560f3648aabc06a2f2a4700ba1fab2069 /core/zero_copy_buf.rs | |
parent | 0c735ebdc75142d6b38d1d9bbbae5ef084ad4f4a (diff) |
Upgrade to rusty_v8 0.4.2 / V8 8.5.216 (#6503)
Diffstat (limited to 'core/zero_copy_buf.rs')
-rw-r--r-- | core/zero_copy_buf.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/zero_copy_buf.rs b/core/zero_copy_buf.rs index be61d5f98..a458e12ff 100644 --- a/core/zero_copy_buf.rs +++ b/core/zero_copy_buf.rs @@ -19,7 +19,7 @@ unsafe impl Send for ZeroCopyBuf {} impl ZeroCopyBuf { pub fn new<'s>( - scope: &mut impl v8::ToLocal<'s>, + scope: &mut v8::HandleScope<'s>, view: v8::Local<v8::ArrayBufferView>, ) -> Self { let backing_store = view.buffer(scope).unwrap().get_backing_store(); |