Fix build with Xcode.

This commit is contained in:
John Preston 2023-05-09 21:40:06 +04:00
parent 2212b55b13
commit 0ca40e9d34
2 changed files with 1 additions and 2 deletions

View file

@ -108,7 +108,7 @@ std::optional<StoryItem> Stories::parse(const MTPDstoryItem &data) {
const auto date = data.vdate().v; const auto date = data.vdate().v;
return StoryItem{ return StoryItem{
.id = data.vid().v, .id = data.vid().v,
.media = *media, .media = { *media },
.caption = std::move(caption), .caption = std::move(caption),
.date = date, .date = date,
.privacy = privacy, .privacy = privacy,

View file

@ -55,7 +55,6 @@ struct Layout {
QRect siblingLeft; QRect siblingLeft;
QRect siblingRight; QRect siblingRight;
friend inline auto operator<=>(Layout, Layout) = default;
friend inline bool operator==(Layout, Layout) = default; friend inline bool operator==(Layout, Layout) = default;
}; };