From fd5e42957df314f7f8c4b74c2b226cd333a7c66e Mon Sep 17 00:00:00 2001 From: Timur Pocheptsov Date: Wed, 6 Mar 2019 11:32:36 +0100 Subject: QOcspResponse - fix a broken build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/network/ssl/qocspresponse.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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) -- cgit v1.2.3