phobos v2.101 random breaking change

This commit is contained in:
Adam D. Ruppe 2022-11-03 19:17:27 -04:00
parent 3fface2761
commit 6f03281044
2 changed files with 2 additions and 2 deletions

2
cgi.d
View File

@ -5207,7 +5207,7 @@ private class FakeSocketForStdin : Socket {
return buffer.length;
}
override void close() @trusted {
override void close() @trusted scope {
(cast(void delegate() @nogc nothrow) &realClose)();
}

View File

@ -3972,7 +3972,7 @@ version(use_openssl) {
initSsl(verifyPeer, hostname);
}
override void close() {
override void close() scope {
if(ssl) OpenSSL.SSL_shutdown(ssl);
super.close();
}