diff options
author | Rich Trott <rtrott@gmail.com> | 2016-07-25 11:48:14 -0700 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2016-07-25 14:12:12 -0700 |
commit | 809aabcc133d5213877e3d2b64fa49fb1393e15a (patch) | |
tree | ea0d57163b323e7311fde45ac2575fbae7f515d7 /src/connection_wrap.h | |
parent | e4abfe41edafab1c663bfd91f74a6aa38ea34e45 (diff) | |
download | node-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.h | 3 |
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_; }; |