summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telegram/tdesktop/fix-internal-compiler-error.patch
blob: 1c79840d626075bdcb8b6716e1c98d04f99adcde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Date: Tue, 17 Jul 2018 20:29:49 +0200

---
 Telegram/SourceFiles/export/data/export_data_types.cpp | 9 ++++++---
 Telegram/SourceFiles/export/export_api_wrap.cpp        | 6 ++++--
 2 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/Telegram/SourceFiles/export/data/export_data_types.cpp b/Telegram/SourceFiles/export/data/export_data_types.cpp
index f835dc2f9..e811c27e8 100644
--- a/Telegram/SourceFiles/export/data/export_data_types.cpp
+++ b/Telegram/SourceFiles/export/data/export_data_types.cpp
@@ -221,7 +221,8 @@ Image ParseMaxImage(
 				result.width = data.vw.v;
 				result.height = data.vh.v;
 				result.file.location = ParseLocation(data.vlocation);
-				if constexpr (MTPDphotoCachedSize::Is<decltype(data)>()) {
+				constexpr bool condition = MTPDphotoCachedSize::Is<decltype(data)>();
+				if constexpr (condition) {
 					result.file.content = data.vbytes.v;
 					result.file.size = result.file.content.size();
 				} else {
@@ -409,7 +410,8 @@ Document ParseDocument(
 			result.width = data.vw.v;
 			result.height = data.vh.v;
 			result.file.location = ParseLocation(data.vlocation);
-			if constexpr (MTPDphotoCachedSize::Is<decltype(data)>()) {
+			constexpr bool condition = MTPDphotoCachedSize::Is<decltype(data)>();
+			if constexpr (condition) {
 				result.file.content = data.vbytes.v;
 				result.file.size = result.file.content.size();
 			} else {
@@ -1017,7 +1019,8 @@ Message ParseMessage(
 	auto result = Message();
 	data.match([&](const auto &data) {
 		result.id = data.vid.v;
-		if constexpr (!MTPDmessageEmpty::Is<decltype(data)>()) {
+		constexpr bool condition = !MTPDmessageEmpty::Is<decltype(data)>();
+		if constexpr (condition) {
 			result.toId = ParsePeerId(data.vto_id);
 			const auto peerId = (!data.is_out()
 				&& data.has_from_id()
diff --git a/Telegram/SourceFiles/export/export_api_wrap.cpp b/Telegram/SourceFiles/export/export_api_wrap.cpp
index b618937f6..bb98647dd 100644
--- a/Telegram/SourceFiles/export/export_api_wrap.cpp
+++ b/Telegram/SourceFiles/export/export_api_wrap.cpp
@@ -709,7 +709,8 @@ void ApiWrap::handleUserpicsSlice(const MTPphotos_Photos &result) {
 	Expects(_userpicsProcess != nullptr);
 
 	result.match([&](const auto &data) {
-		if constexpr (MTPDphotos_photos::Is<decltype(data)>()) {
+		constexpr bool condition = MTPDphotos_photos::Is<decltype(data)>();
+		if constexpr (condition) {
 			_userpicsProcess->lastSlice = true;
 		}
 		loadUserpicsFiles(Data::ParseUserpicsSlice(
@@ -1141,7 +1142,8 @@ void ApiWrap::requestMessagesSlice() {
 		result.match([&](const MTPDmessages_messagesNotModified &data) {
 			error("Unexpected messagesNotModified received.");
 		}, [&](const auto &data) {
-			if constexpr (MTPDmessages_messages::Is<decltype(data)>()) {
+			constexpr bool condition = MTPDmessages_messages::Is<decltype(data)>();
+			if constexpr (condition) {
 				_chatProcess->lastSlice = true;
 			}
 			loadMessagesFiles(Data::ParseMessagesSlice(
-- 
2.16.3