From ae3fae44b2694436b05ad0b4b82a1444cc17c696 Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Thu, 6 Jun 2019 14:01:28 +0300 Subject: [PATCH] Fix build on macOS. --- Telegram/SourceFiles/chat_helpers/message_field.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/chat_helpers/message_field.cpp b/Telegram/SourceFiles/chat_helpers/message_field.cpp index 11d56d5ad..b89c8ec3a 100644 --- a/Telegram/SourceFiles/chat_helpers/message_field.cpp +++ b/Telegram/SourceFiles/chat_helpers/message_field.cpp @@ -180,7 +180,7 @@ TextWithEntities StripSupportHashtag(TextWithEntities &&text) { QRegularExpression::CaseInsensitiveOption); const auto match = expression.match(text.text); if (!match.hasMatch()) { - return text; + return std::move(text); } text.text.chop(match.capturedLength()); const auto length = text.text.size(); @@ -199,7 +199,7 @@ TextWithEntities StripSupportHashtag(TextWithEntities &&text) { if (!text.text.isEmpty() && !text.text.endsWith('\n')) { text.text.append('\n'); } - return text; + return std::move(text); } } // namespace