summaryrefslogtreecommitdiff
path: root/src/cares_wrap.cc
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2016-06-28 21:21:21 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2016-06-28 21:21:21 +0200
commit29228c4089431d0e65749421f43aafd05694f376 (patch)
tree82afc084bf146b04edc16b6a974a40356f1a04c9 /src/cares_wrap.cc
parente9559d028ee5d17c24e498b6144cb67e8d0b3d0c (diff)
downloadandroid-node-v8-29228c4089431d0e65749421f43aafd05694f376.tar.gz
android-node-v8-29228c4089431d0e65749421f43aafd05694f376.tar.bz2
android-node-v8-29228c4089431d0e65749421f43aafd05694f376.zip
src: fix readability/braces cpplint warnings
PR-URL: https://github.com/nodejs/node/pull/7462 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Diffstat (limited to 'src/cares_wrap.cc')
-rw-r--r--src/cares_wrap.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cares_wrap.cc b/src/cares_wrap.cc
index 88ce802dfe..f78fe52871 100644
--- a/src/cares_wrap.cc
+++ b/src/cares_wrap.cc
@@ -371,11 +371,11 @@ class QueryWrap : public AsyncWrap {
// Subclasses should implement the appropriate Parse method.
virtual void Parse(unsigned char* buf, int len) {
UNREACHABLE();
- };
+ }
virtual void Parse(struct hostent* host) {
UNREACHABLE();
- };
+ }
};