Skip to content

Commit 809aabc

Browse files
committed
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: #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]>
1 parent e4abfe4 commit 809aabc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/connection_wrap.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ class ConnectionWrap : public StreamWrap {
2323
v8::Local<v8::Object> object,
2424
ProviderType provider,
2525
AsyncWrap* parent);
26-
~ConnectionWrap() = default;
26+
~ConnectionWrap() {
27+
}
2728

2829
UVType handle_;
2930
};

0 commit comments

Comments
 (0)