From 809aabcc133d5213877e3d2b64fa49fb1393e15a Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 25 Jul 2016 11:48:14 -0700 Subject: [PATCH] src: fix build on CentOS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-By: Johan Bergström Reviewed-By: Ben Noordhuis Reviewed-By: Anna Henningsen --- src/connection_wrap.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/connection_wrap.h b/src/connection_wrap.h index 7f7a50ae7ca6cf..1702e22dd31188 100644 --- a/src/connection_wrap.h +++ b/src/connection_wrap.h @@ -23,7 +23,8 @@ class ConnectionWrap : public StreamWrap { v8::Local object, ProviderType provider, AsyncWrap* parent); - ~ConnectionWrap() = default; + ~ConnectionWrap() { + } UVType handle_; };