mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-01 23:00:58 +00:00
Version 1.8.12: Fix build for Xcode.
This commit is contained in:
parent
60640c7087
commit
ecfe1dacb2
Telegram
SourceFiles
chat_helpers
data
history
media/streaming
ui/text
gyp/common
@ -449,7 +449,7 @@ std::vector<Result> EmojiKeywords::LangPack::query(
|
|||||||
}
|
}
|
||||||
|
|
||||||
const auto from = _data.emoji.lower_bound(normalized);
|
const auto from = _data.emoji.lower_bound(normalized);
|
||||||
auto &&chosen = ranges::subrange(
|
auto &&chosen = ranges::make_subrange(
|
||||||
from,
|
from,
|
||||||
end(_data.emoji)
|
end(_data.emoji)
|
||||||
) | ranges::view::take_while([&](const auto &pair) {
|
) | ranges::view::take_while([&](const auto &pair) {
|
||||||
|
@ -764,7 +764,7 @@ void ApplyMegagroupAdmins(
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto adding = base::flat_map<UserId, QString>();
|
auto adding = base::flat_map<UserId, QString>();
|
||||||
auto admins = ranges::subrange(
|
auto admins = ranges::make_subrange(
|
||||||
list.begin(), list.end()
|
list.begin(), list.end()
|
||||||
) | ranges::view::transform([](const MTPChannelParticipant &p) {
|
) | ranges::view::transform([](const MTPChannelParticipant &p) {
|
||||||
const auto userId = p.match([](const auto &data) {
|
const auto userId = p.match([](const auto &data) {
|
||||||
|
@ -2444,7 +2444,7 @@ MessageIdsList HistoryInner::getSelectedItems() const {
|
|||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
auto result = ranges::subrange(
|
auto result = ranges::make_subrange(
|
||||||
_selected.begin(),
|
_selected.begin(),
|
||||||
_selected.end()
|
_selected.end()
|
||||||
) | view::filter([](const auto &selected) {
|
) | view::filter([](const auto &selected) {
|
||||||
|
@ -291,7 +291,7 @@ auto Reader::Slice::prepareFill(int from, int till) -> PrepareFillResult {
|
|||||||
ranges::less(),
|
ranges::less(),
|
||||||
&PartsMap::value_type::first);
|
&PartsMap::value_type::first);
|
||||||
const auto haveTill = FindNotLoadedStart(
|
const auto haveTill = FindNotLoadedStart(
|
||||||
ranges::subrange(start, finish),
|
ranges::make_subrange(start, finish),
|
||||||
fromOffset);
|
fromOffset);
|
||||||
if (haveTill < till) {
|
if (haveTill < till) {
|
||||||
result.offsetsFromLoader = offsetsFromLoader(
|
result.offsetsFromLoader = offsetsFromLoader(
|
||||||
@ -607,14 +607,14 @@ auto Reader::Slices::fill(int offset, bytes::span buffer) -> FillResult {
|
|||||||
markSliceUsed(fromSlice);
|
markSliceUsed(fromSlice);
|
||||||
CopyLoaded(
|
CopyLoaded(
|
||||||
buffer,
|
buffer,
|
||||||
ranges::subrange(first.start, first.finish),
|
ranges::make_subrange(first.start, first.finish),
|
||||||
firstFrom,
|
firstFrom,
|
||||||
firstTill);
|
firstTill);
|
||||||
if (fromSlice + 1 < tillSlice) {
|
if (fromSlice + 1 < tillSlice) {
|
||||||
markSliceUsed(fromSlice + 1);
|
markSliceUsed(fromSlice + 1);
|
||||||
CopyLoaded(
|
CopyLoaded(
|
||||||
buffer.subspan(firstTill - firstFrom),
|
buffer.subspan(firstTill - firstFrom),
|
||||||
ranges::subrange(second.start, second.finish),
|
ranges::make_subrange(second.start, second.finish),
|
||||||
secondFrom,
|
secondFrom,
|
||||||
secondTill);
|
secondTill);
|
||||||
}
|
}
|
||||||
@ -644,7 +644,7 @@ auto Reader::Slices::fillFromHeader(int offset, bytes::span buffer)
|
|||||||
if (prepared.ready) {
|
if (prepared.ready) {
|
||||||
CopyLoaded(
|
CopyLoaded(
|
||||||
buffer,
|
buffer,
|
||||||
ranges::subrange(prepared.start, prepared.finish),
|
ranges::make_subrange(prepared.start, prepared.finish),
|
||||||
from,
|
from,
|
||||||
till);
|
till);
|
||||||
result.filled = true;
|
result.filled = true;
|
||||||
|
@ -1141,7 +1141,7 @@ const QRegularExpression &RegExpWordSplit() {
|
|||||||
|
|
||||||
[[nodiscard]] QString ExpandCustomLinks(const TextWithTags &text) {
|
[[nodiscard]] QString ExpandCustomLinks(const TextWithTags &text) {
|
||||||
const auto entities = ConvertTextTagsToEntities(text.tags);
|
const auto entities = ConvertTextTagsToEntities(text.tags);
|
||||||
auto &&urls = ranges::subrange(
|
auto &&urls = ranges::make_subrange(
|
||||||
entities.begin(),
|
entities.begin(),
|
||||||
entities.end()
|
entities.end()
|
||||||
) | ranges::view::filter([](const EntityInText &entity) {
|
) | ranges::view::filter([](const EntityInText &entity) {
|
||||||
@ -2098,7 +2098,7 @@ EntityInText::EntityInText(
|
|||||||
int EntityInText::FirstMonospaceOffset(
|
int EntityInText::FirstMonospaceOffset(
|
||||||
const EntitiesInText &entities,
|
const EntitiesInText &entities,
|
||||||
int textLength) {
|
int textLength) {
|
||||||
auto &&monospace = ranges::subrange(
|
auto &&monospace = ranges::make_subrange(
|
||||||
entities.begin(),
|
entities.begin(),
|
||||||
entities.end()
|
entities.end()
|
||||||
) | ranges::view::filter([](const EntityInText & entity) {
|
) | ranges::view::filter([](const EntityInText & entity) {
|
||||||
|
@ -64,6 +64,7 @@
|
|||||||
'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
|
'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
|
||||||
'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES',
|
'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES',
|
||||||
'GCC_OPTIMIZATION_LEVEL': '0',
|
'GCC_OPTIMIZATION_LEVEL': '0',
|
||||||
|
'GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS': 'NO', # temp for range-v3
|
||||||
'ALWAYS_SEARCH_USER_PATHS': 'NO',
|
'ALWAYS_SEARCH_USER_PATHS': 'NO',
|
||||||
},
|
},
|
||||||
'configurations': {
|
'configurations': {
|
||||||
@ -88,6 +89,7 @@
|
|||||||
'OTHER_LDFLAGS': [
|
'OTHER_LDFLAGS': [
|
||||||
'-w', # Suppress 'libstdc++ is deprecated' warning.
|
'-w', # Suppress 'libstdc++ is deprecated' warning.
|
||||||
],
|
],
|
||||||
|
'GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS': 'NO', # temp for range-v3
|
||||||
},
|
},
|
||||||
'defines': [
|
'defines': [
|
||||||
'OS_MAC_OLD',
|
'OS_MAC_OLD',
|
||||||
|
Loading…
Reference in New Issue
Block a user