diff options
author | Tim Blechmann <[email protected]> | 2025-05-10 21:37:52 +0200 |
---|---|---|
committer | Tim Blechmann <[email protected]> | 2025-05-26 23:02:30 +0200 |
commit | 1f6352010d82ad97eb9bf28cbb7140e0eb27dbba (patch) | |
tree | 34fec07710f230b1c8d1bc19c582b1bdea2277f3 | |
parent | d4a54ba56a7e5e6eff29f8813d531f8098cc8cf8 (diff) |
network: silence -Wimplicit-exception-spec-mismatch
`noexcept` drop implicit noexcept from QHttp2Connection dtor
Pick-to: 6.8 6.9
Change-Id: I0ff6afb1f70d3fe68739380b6f18c308871aa327
Reviewed-by: MÃ¥rten Nordheim <[email protected]>
Reviewed-by: Giuseppe D'Angelo <[email protected]>
-rw-r--r-- | src/network/access/qhttp2connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/access/qhttp2connection.cpp b/src/network/access/qhttp2connection.cpp index 1e864041f62..0f47aa010c2 100644 --- a/src/network/access/qhttp2connection.cpp +++ b/src/network/access/qhttp2connection.cpp @@ -1029,7 +1029,7 @@ QHttp2Connection::QHttp2Connection(QIODevice *socket) : QObject(socket) // socket connections. } -QHttp2Connection::~QHttp2Connection() noexcept +QHttp2Connection::~QHttp2Connection() { // delete streams now so that any calls it might make back to this // Connection will operate on a valid object. |