Skip to content

Commit 0ad7797

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
1 parent e4abfe4 commit 0ad7797

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)