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.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 @@ -1839,9 +1839,11 @@ class V8_EXPORT ScriptCompiler {
1839
1839
public:
1840
1840
enum Encoding { ONE_BYTE, TWO_BYTE, UTF8 };
1841
1841
1842
+ #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
1842
1843
V8_DEPRECATE_SOON (
1843
1844
" This class takes ownership of source_stream, so use the constructor "
1844
1845
" taking a unique_ptr to make these semantics clearer" )
1846
+ #endif
1845
1847
StreamedSource (ExternalSourceStream* source_stream, Encoding encoding);
1846
1848
StreamedSource (std::unique_ptr<ExternalSourceStream> source_stream,
1847
1849
Encoding encoding);
You can’t perform that action at this time.
0 commit comments