aboutsummaryrefslogtreecommitdiff
path: root/src/connection_wrap.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/connection_wrap.cc')
-rw-r--r--src/connection_wrap.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/connection_wrap.cc b/src/connection_wrap.cc
index d894ef6cc0..a7f08ecc19 100644
--- a/src/connection_wrap.cc
+++ b/src/connection_wrap.cc
@@ -24,10 +24,10 @@ template <typename WrapType, typename UVType>
ConnectionWrap<WrapType, UVType>::ConnectionWrap(Environment* env,
Local<Object> object,
ProviderType provider)
- : StreamWrap(env,
- object,
- reinterpret_cast<uv_stream_t*>(&handle_),
- provider) {}
+ : LibuvStreamWrap(env,
+ object,
+ reinterpret_cast<uv_stream_t*>(&handle_),
+ provider) {}
template <typename WrapType, typename UVType>