File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 39
39
40
40
# Reset this number to 0 on major V8 upgrades.
41
41
# Increment by one for each non-official patch applied to deps/v8.
42
- 'v8_embedder_string' : '-node.7 ' ,
42
+ 'v8_embedder_string' : '-node.8 ' ,
43
43
44
44
##### V8 defaults for Node.js #####
45
45
Original file line number Diff line number Diff line change @@ -1760,9 +1760,11 @@ class V8_EXPORT ScriptCompiler {
1760
1760
public:
1761
1761
enum Encoding { ONE_BYTE, TWO_BYTE, UTF8 };
1762
1762
1763
+ #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
1763
1764
V8_DEPRECATE_SOON (
1764
1765
" This class takes ownership of source_stream, so use the constructor "
1765
1766
" taking a unique_ptr to make these semantics clearer" )
1767
+ #endif
1766
1768
StreamedSource (ExternalSourceStream* source_stream, Encoding encoding);
1767
1769
StreamedSource (std::unique_ptr<ExternalSourceStream> source_stream,
1768
1770
Encoding encoding);
You can’t perform that action at this time.
0 commit comments