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: #7547 (comment)
PR-URL: #7873
Reviewed-By: Jeremiah Senkpiel <[email protected]>
Reviewed-By: Johan Bergström <[email protected]>
Reviewed-By: Ben Noordhuis <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
  • Loading branch information
Trott authored and cjihrig committed Aug 10, 2016
1 parent 303f410 commit d714309
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 d714309

Please sign in to comment.