Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit 33ba5aa

Browse files
committed
Make QXmppPubSubItem move constructor noexcept
1 parent ce8a9f8 commit 33ba5aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/base/QXmppPubSubItem.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ class QXMPP_EXPORT QXmppPubSubItem
2020
public:
2121
QXmppPubSubItem(const QString &id = {}, const QString &publisher = {});
2222
QXmppPubSubItem(const QXmppPubSubItem &);
23-
QXmppPubSubItem(QXmppPubSubItem &&);
23+
QXmppPubSubItem(QXmppPubSubItem &&) noexcept;
2424
virtual ~QXmppPubSubItem();
2525

2626
QXmppPubSubItem &operator=(const QXmppPubSubItem &);
27-
QXmppPubSubItem &operator=(QXmppPubSubItem &&);
27+
QXmppPubSubItem &operator=(QXmppPubSubItem &&) noexcept;
2828

2929
QString id() const;
3030
void setId(const QString &id);

0 commit comments

Comments
 (0)