summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2019-03-06 11:32:36 +0100
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2019-03-06 14:25:03 +0000
commitfd5e42957df314f7f8c4b74c2b226cd333a7c66e (patch)
tree6e4b222096116c40127b2c5dd98c805dd776fb7c /src
parentc01b07a810914b2f0da8d44d471b4408841d2345 (diff)
QOcspResponse - fix a broken build
At least on RHEL 7.4 I have compilation errors (unused parameters). Since this is our own CI machine, I suspect something is not right with our bloody CI - if the breaking change managed to merge in the first place. Change-Id: I681ff2b5fa34495a2e3ca0849a5b1963f75fd621 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/network/ssl/qocspresponse.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/network/ssl/qocspresponse.cpp b/src/network/ssl/qocspresponse.cpp
index 496979913b..c3aa680463 100644
--- a/src/network/ssl/qocspresponse.cpp
+++ b/src/network/ssl/qocspresponse.cpp
@@ -126,14 +126,14 @@ QOcspResponse::QOcspResponse()
Creates a new response, the copy of \a other.
*/
-QOcspResponse::QOcspResponse(const QOcspResponse &other) = default;
+QOcspResponse::QOcspResponse(const QOcspResponse &) = default;
/*!
\since 5.13
Move-constructs a QOcspResponse instance from \a other.
*/
-QOcspResponse::QOcspResponse(QOcspResponse &&other) Q_DECL_NOTHROW = default;
+QOcspResponse::QOcspResponse(QOcspResponse &&) Q_DECL_NOTHROW = default;
/*!
\since 5.13
@@ -147,14 +147,14 @@ QOcspResponse::~QOcspResponse() = default;
Assigns \a other to the response and returns a reference to this response.
*/
-QOcspResponse &QOcspResponse::operator=(const QOcspResponse &other) = default;
+QOcspResponse &QOcspResponse::operator=(const QOcspResponse &) = default;
/*!
\since 5.13
Move-assigns \a other to this QOcspResponse instance.
*/
-QOcspResponse &QOcspResponse::operator=(QOcspResponse &&other) Q_DECL_NOTHROW = default;
+QOcspResponse &QOcspResponse::operator=(QOcspResponse &&) Q_DECL_NOTHROW = default;
/*!
\fn void QOcspResponse::swap(QOcspResponse &other)