QDnsTlsAssociationRecord: make move ctor default-noexcept
From the API review. Change-Id: I74140a9268670575488ddc3c31b09c84bc83eae0 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Marc Mutz <marc.mutz@qt.io> (cherry picked from commit df85c6fd9d65abf44ccdcd1d6e6594cab3fc7d65) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
1b3bef3ef4
commit
555cbb3976
@ -190,9 +190,7 @@ public:
|
||||
|
||||
QDnsTlsAssociationRecord();
|
||||
QDnsTlsAssociationRecord(const QDnsTlsAssociationRecord &other);
|
||||
QDnsTlsAssociationRecord(QDnsTlsAssociationRecord &&other)
|
||||
: d(std::move(other.d))
|
||||
{}
|
||||
QDnsTlsAssociationRecord(QDnsTlsAssociationRecord &&other) noexcept = default;
|
||||
QT_MOVE_ASSIGNMENT_OPERATOR_IMPL_VIA_PURE_SWAP(QDnsTlsAssociationRecord)
|
||||
QDnsTlsAssociationRecord &operator=(const QDnsTlsAssociationRecord &other);
|
||||
~QDnsTlsAssociationRecord();
|
||||
|
Loading…
x
Reference in New Issue
Block a user