Skip to content

Commit d714309

Browse files
Trottcjihrig
authored andcommitted
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 303f410 commit d714309

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/connection_wrap.h

Lines changed: 2 additions & 1 deletion
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)