File tree 2 files changed +3
-1
lines changed 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 @@ -1758,9 +1758,11 @@ class V8_EXPORT ScriptCompiler {
1758
1758
public:
1759
1759
enum Encoding { ONE_BYTE, TWO_BYTE, UTF8 };
1760
1760
1761
+ #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
1761
1762
V8_DEPRECATE_SOON (
1762
1763
" This class takes ownership of source_stream, so use the constructor "
1763
1764
" taking a unique_ptr to make these semantics clearer" )
1765
+ #endif
1764
1766
StreamedSource (ExternalSourceStream* source_stream, Encoding encoding);
1765
1767
StreamedSource (std::unique_ptr<ExternalSourceStream> source_stream,
1766
1768
Encoding encoding);
You can’t perform that action at this time.
0 commit comments