Skip to content

Commit

Permalink
src: fix build on CentOS
Browse files Browse the repository at this point in the history
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: nodejs#7547 (comment)
PR-URL: nodejs#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>
  • Loading branch information
Trott committed Jul 25, 2016
1 parent e4abfe4 commit 809aabc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/connection_wrap.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ class ConnectionWrap : public StreamWrap {
v8::Local<v8::Object> object,
ProviderType provider,
AsyncWrap* parent);
~ConnectionWrap() = default;
~ConnectionWrap() {
}

UVType handle_;
};
Expand Down

0 comments on commit 809aabc

Please sign in to comment.