summaryrefslogtreecommitdiff
path: root/src/node_http_parser.cc
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/node_http_parser.cc
parenta2d1cbef6baabd767cef523078eb4e5921429d09 (diff)
downloadandroid-node-v8-7063c59b97fa4f365f9e5ec1f563235ede4104db.tar.gz
android-node-v8-7063c59b97fa4f365f9e5ec1f563235ede4104db.tar.bz2
android-node-v8-7063c59b97fa4f365f9e5ec1f563235ede4104db.zip
cpplint: disallow comma-first in C++
Diffstat (limited to 'src/node_http_parser.cc')
-rw-r--r--src/node_http_parser.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/node_http_parser.cc b/src/node_http_parser.cc
index 12e9ee2fd3..f7faf0d792 100644
--- a/src/node_http_parser.cc
+++ b/src/node_http_parser.cc
@@ -190,10 +190,10 @@ struct StringPtr {
class Parser : public WeakObject {
public:
Parser(Environment* env, Local<Object> wrap, enum http_parser_type type)
- : WeakObject(env->isolate(), wrap)
- , env_(env)
- , current_buffer_len_(0)
- , current_buffer_data_(NULL) {
+ : WeakObject(env->isolate(), wrap),
+ env_(env),
+ current_buffer_len_(0),
+ current_buffer_data_(NULL) {
Init(type);
}