We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f0bc60 commit 228e703Copy full SHA for 228e703
common.gypi
@@ -36,7 +36,7 @@
36
37
# Reset this number to 0 on major V8 upgrades.
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string': '-node.10',
+ 'v8_embedder_string': '-node.11',
40
41
##### V8 defaults for Node.js #####
42
deps/v8/src/objects/fixed-array.h
@@ -138,7 +138,9 @@ class FixedArray
138
inline void set(int index, Smi value);
139
#else
140
inline void set(int index, Smi value) {
141
+#if !defined(_WIN32)
142
DCHECK_NE(map(), GetReadOnlyRoots().fixed_cow_array_map());
143
+#endif
144
DCHECK_LT(static_cast<unsigned>(index), static_cast<unsigned>(length()));
145
DCHECK(Object(value).IsSmi());
146
int offset = OffsetOfElementAt(index);
0 commit comments