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 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.5 ' ,
39
+ 'v8_embedder_string' : '-node.6 ' ,
40
40
41
41
##### V8 defaults for Node.js #####
42
42
Original file line number Diff line number Diff line change @@ -1752,9 +1752,11 @@ class V8_EXPORT ScriptCompiler {
1752
1752
public:
1753
1753
enum Encoding { ONE_BYTE, TWO_BYTE, UTF8 };
1754
1754
1755
+ #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
1755
1756
V8_DEPRECATE_SOON (
1756
1757
" This class takes ownership of source_stream, so use the constructor "
1757
1758
" taking a unique_ptr to make these semantics clearer" )
1759
+ #endif
1758
1760
StreamedSource (ExternalSourceStream* source_stream, Encoding encoding);
1759
1761
StreamedSource (std::unique_ptr<ExternalSourceStream> source_stream,
1760
1762
Encoding encoding);
You can’t perform that action at this time.
0 commit comments