summaryrefslogtreecommitdiff
path: root/src/connection_wrap.h
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-07-25 11:48:14 -0700
committerRich Trott <rtrott@gmail.com>2016-07-25 14:12:12 -0700
commit809aabcc133d5213877e3d2b64fa49fb1393e15a (patch)
treeea0d57163b323e7311fde45ac2575fbae7f515d7 /src/connection_wrap.h
parente4abfe41edafab1c663bfd91f74a6aa38ea34e45 (diff)
downloadnode-new-809aabcc133d5213877e3d2b64fa49fb1393e15a.tar.gz
src: fix build on CentOS
85af1a6 was added (squashed into another commit) without running through CI. Unfortunately, it breaks some of the CI builds, notably on three of the CentOS setups. Undoing that one small change to get builds green again. Refs: https://github.com/nodejs/node/pull/7547#issuecomment-235045450 PR-URL: https://github.com/nodejs/node/pull/7873 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'src/connection_wrap.h')
-rw-r--r--src/connection_wrap.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/connection_wrap.h b/src/connection_wrap.h
index 7f7a50ae7c..1702e22dd3 100644
--- a/src/connection_wrap.h
+++ b/src/connection_wrap.h
@@ -23,7 +23,8 @@ class ConnectionWrap : public StreamWrap {
v8::Local<v8::Object> object,
ProviderType provider,
AsyncWrap* parent);
- ~ConnectionWrap() = default;
+ ~ConnectionWrap() {
+ }
UVType handle_;
};