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-10-16 20:34:39 +0400
committerFedor Indutny <fedor.indutny@gmail.com>2013-10-17 00:34:18 +0400
commit7063c59b97fa4f365f9e5ec1f563235ede4104db (patch)
tree3b6c428fcefd43a20582275ef0cb78e63fa4f057 /src/stream_wrap.h
parenta2d1cbef6baabd767cef523078eb4e5921429d09 (diff)
cpplint: disallow comma-first in C++
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 26fb5d5ef64..374e7c75cea 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; }