Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2015-04-29 21:03:15 +0300
committerBen Noordhuis <info@bnoordhuis.nl>2015-04-30 02:05:32 +0300
commitccb199af1770ae5ee190c8f6752469931df9a51e (patch)
treebf769b1919043038025ed928d002405236635822 /src/spawn_sync.h
parent609fa0de039f4285c402ac3f646fcd5d4828d3aa (diff)
src: fix deprecation warnings
The previous commit enables deprecation warnings, this commit fixes the handful of offending sites where the isolate was not explicitly being passed around. PR-URL: https://github.com/iojs/io.js/pull/1565 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Diffstat (limited to 'src/spawn_sync.h')
-rw-r--r--src/spawn_sync.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spawn_sync.h b/src/spawn_sync.h
index 4a71b75202b..9a544fa0576 100644
--- a/src/spawn_sync.h
+++ b/src/spawn_sync.h
@@ -72,7 +72,7 @@ class SyncProcessStdioPipe {
int Start();
void Close();
- Local<Object> GetOutputAsBuffer() const;
+ Local<Object> GetOutputAsBuffer(Isolate* isolate) const;
inline bool readable() const;
inline bool writable() const;