We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bcc841 commit beda326Copy full SHA for beda326
src/util.h
@@ -394,7 +394,7 @@ class BufferValue : public MaybeStackBuffer<char> {
394
395
#define SPREAD_BUFFER_ARG(val, name) \
396
CHECK((val)->IsUint8Array()); \
397
- Local<v8::Uint8Array> name = (val).As<v8::Uint8Array>(); \
+ v8::Local<v8::Uint8Array> name = (val).As<v8::Uint8Array>(); \
398
v8::ArrayBuffer::Contents name##_c = name->Buffer()->GetContents(); \
399
const size_t name##_offset = name->ByteOffset(); \
400
const size_t name##_length = name->ByteLength(); \
0 commit comments