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