From 08e3a54a580c6b2f726b702c40908e7b2219dee6 Mon Sep 17 00:00:00 2001 From: visuve Date: Sun, 17 Sep 2017 14:28:20 +0300 Subject: [PATCH] Mark missing ctors deleted - Satisfy the rule of five Signed-off-by: Veli-Matti Visuri (github: visuve) --- Telegram/SourceFiles/base/qthelp_regex.h | 4 ++++ Telegram/SourceFiles/history/history_item.h | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/Telegram/SourceFiles/base/qthelp_regex.h b/Telegram/SourceFiles/base/qthelp_regex.h index 657094cd9..39c7739d0 100644 --- a/Telegram/SourceFiles/base/qthelp_regex.h +++ b/Telegram/SourceFiles/base/qthelp_regex.h @@ -26,10 +26,14 @@ namespace qthelp { class RegularExpressionMatch { public: + RegularExpressionMatch(const QRegularExpressionMatch &other) = delete; + RegularExpressionMatch(const RegularExpressionMatch &other) = delete; RegularExpressionMatch(QRegularExpressionMatch &&match) : data_(std::move(match)) { } RegularExpressionMatch(RegularExpressionMatch &&other) : data_(std::move(other.data_)) { } + RegularExpressionMatch &operator=(const QRegularExpressionMatch &match) = delete; + RegularExpressionMatch &operator=(const RegularExpressionMatch &other) = delete; RegularExpressionMatch &operator=(QRegularExpressionMatch &&match) { data_ = std::move(match); return *this; diff --git a/Telegram/SourceFiles/history/history_item.h b/Telegram/SourceFiles/history/history_item.h index 0b757fbd5..5e3d6ef22 100644 --- a/Telegram/SourceFiles/history/history_item.h +++ b/Telegram/SourceFiles/history/history_item.h @@ -146,6 +146,10 @@ struct HistoryMessageForwarded : public RuntimeComponent { + HistoryMessageReply() = default; + HistoryMessageReply(const HistoryMessageReply &other) = delete; + HistoryMessageReply(HistoryMessageReply &&other) = delete; + HistoryMessageReply &operator=(const HistoryMessageReply &other) = delete; HistoryMessageReply &operator=(HistoryMessageReply &&other) { replyToMsgId = other.replyToMsgId; std::swap(replyToMsg, other.replyToMsg);