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 @@ -1738,9 +1738,11 @@ class V8_EXPORT ScriptCompiler {
1738
1738
public:
1739
1739
enum Encoding { ONE_BYTE, TWO_BYTE, UTF8 };
1740
1740
1741
+ #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
1741
1742
V8_DEPRECATE_SOON (
1742
1743
" This class takes ownership of source_stream, so use the constructor "
1743
1744
" taking a unique_ptr to make these semantics clearer" )
1745
+ #endif
1744
1746
StreamedSource (ExternalSourceStream* source_stream, Encoding encoding);
1745
1747
StreamedSource (std::unique_ptr<ExternalSourceStream> source_stream,
1746
1748
Encoding encoding);
You can’t perform that action at this time.
0 commit comments