| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -36,7 +36,7 @@ | |||
| 36 | 36 | ||
| 37 | 37 | # Reset this number to 0 on major V8 upgrades. | |
| 38 | 38 | # Increment by one for each non-official patch applied to deps/v8. | |
| 39 | - 'v8_embedder_string': '-node.13', | ||
| 39 | + 'v8_embedder_string': '-node.14', | ||
| 40 | 40 | ||
| 41 | 41 | ##### V8 defaults for Node.js ##### | |
| 42 | 42 | ||
@@ -268,6 +268,7 @@ | |||
| 268 | 268 | ], | |
| 269 | 269 | 'msvs_settings': { | |
| 270 | 270 | 'VCCLCompilerTool': { | |
| 271 | + 'AdditionalOptions': ['/Zc:__cplusplus'], | ||
| 271 | 272 | 'BufferSecurityCheck': 'true', | |
| 272 | 273 | 'DebugInformationFormat': 1, # /Z7 embed info in .obj files | |
| 273 | 274 | 'ExceptionHandling': 0, # /EHsc | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -84,7 +84,7 @@ bool FixedArray::is_the_hole(Isolate* isolate, int index) { | |||
| 84 | 84 | return get(isolate, index).IsTheHole(isolate); | |
| 85 | 85 | } | |
| 86 | 86 | ||
| 87 | - #if !defined(_WIN32) || (defined(_WIN64) && _MSC_VER < 1930) | ||
| 87 | + #if !defined(_WIN32) || (defined(_WIN64) && _MSC_VER < 1930 && __cplusplus < 201703L) | ||
| 88 | 88 | void FixedArray::set(int index, Smi value) { | |
| 89 | 89 | DCHECK_NE(map(), GetReadOnlyRoots().fixed_cow_array_map()); | |
| 90 | 90 | DCHECK_LT(static_cast<unsigned>(index), static_cast<unsigned>(length())); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -134,7 +134,7 @@ class FixedArray | |||
| 134 | 134 | inline bool is_the_hole(Isolate* isolate, int index); | |
| 135 | 135 | ||
| 136 | 136 | // Setter that doesn't need write barrier. | |
| 137 | - #if !defined(_WIN32) || (defined(_WIN64) && _MSC_VER < 1930) | ||
| 137 | + #if !defined(_WIN32) || (defined(_WIN64) && _MSC_VER < 1930 && __cplusplus < 201703L) | ||
| 138 | 138 | inline void set(int index, Smi value); | |
| 139 | 139 | #else | |
| 140 | 140 | inline void set(int index, Smi value) { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments