We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 576a6df commit 619bf86Copy full SHA for 619bf86
src/node_buffer.cc
@@ -1525,11 +1525,11 @@ uint32_t FastWriteString(Local<Value> receiver,
1525
std::min<uint32_t>(dst.length() - offset, max_length));
1526
}
1527
1528
-static v8::CFunction fast_write_string_ascii(
+static const v8::CFunction fast_write_string_ascii(
1529
v8::CFunction::Make(FastWriteString<ASCII>));
1530
-static v8::CFunction fast_write_string_latin1(
+static const v8::CFunction fast_write_string_latin1(
1531
v8::CFunction::Make(FastWriteString<LATIN1>));
1532
-static v8::CFunction fast_write_string_utf8(
+static const v8::CFunction fast_write_string_utf8(
1533
v8::CFunction::Make(FastWriteString<UTF8>));
1534
1535
void Initialize(Local<Object> target,
0 commit comments