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;
return StoryItem{
.id = data.vid().v,
.media = *media,
.media = { *media },
.caption = std::move(caption),
.date = date,
.privacy = privacy,

View File

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