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:
authorFedor Indutny <fedor.indutny@gmail.com>2013-06-11 14:52:27 +0400
committerFedor Indutny <fedor.indutny@gmail.com>2013-06-15 23:44:50 +0400
commit6978e998ee7c08b3dd10e4cecd2a167696b74317 (patch)
tree62b4b089a9f3977f18bfde10d570cec0f5200cb4 /src/pipe_wrap.h
parent0495b7031c9a33821e3a518e93911d2832f59d19 (diff)
process: abstract out HandleToStream
Originally contributed by @tjfontaine, but modified to be faster and more generic.
Diffstat (limited to 'src/pipe_wrap.h')
-rw-r--r--src/pipe_wrap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipe_wrap.h b/src/pipe_wrap.h
index d5241e08f32..f1e12eb753b 100644
--- a/src/pipe_wrap.h
+++ b/src/pipe_wrap.h
@@ -25,7 +25,7 @@
namespace node {
-class PipeWrap : StreamWrap {
+class PipeWrap : public StreamWrap {
public:
uv_pipe_t* UVHandle();