summaryrefslogtreecommitdiff
path: root/src/stream_wrap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stream_wrap.h')
-rw-r--r--src/stream_wrap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stream_wrap.h b/src/stream_wrap.h
index 26fb5d5ef6..374e7c75ce 100644
--- a/src/stream_wrap.h
+++ b/src/stream_wrap.h
@@ -38,8 +38,8 @@ typedef class ReqWrap<uv_shutdown_t> ShutdownWrap;
class WriteWrap: public ReqWrap<uv_write_t> {
public:
WriteWrap(Environment* env, v8::Local<v8::Object> obj, StreamWrap* wrap)
- : ReqWrap<uv_write_t>(env, obj)
- , wrap_(wrap) {
+ : ReqWrap<uv_write_t>(env, obj),
+ wrap_(wrap) {
}
void* operator new(size_t size, char* storage) { return storage; }