mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 22:54:01 +02:00
Make SendingAlbum::Item::Item non-inline.
This commit is contained in:
parent
3b2f6b893d
commit
53c15ed2ac
2 changed files with 5 additions and 2 deletions
|
@ -432,6 +432,10 @@ void SendingAlbum::removeItem(not_null<HistoryItem*> item) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SendingAlbum::Item::Item(TaskId taskId)
|
||||||
|
: taskId(taskId) {
|
||||||
|
}
|
||||||
|
|
||||||
FileLoadResult::FileLoadResult(
|
FileLoadResult::FileLoadResult(
|
||||||
TaskId taskId,
|
TaskId taskId,
|
||||||
uint64 id,
|
uint64 id,
|
||||||
|
|
|
@ -168,8 +168,7 @@ private:
|
||||||
|
|
||||||
struct SendingAlbum {
|
struct SendingAlbum {
|
||||||
struct Item {
|
struct Item {
|
||||||
explicit Item(TaskId taskId) : taskId(taskId) {
|
explicit Item(TaskId taskId);
|
||||||
}
|
|
||||||
|
|
||||||
TaskId taskId;
|
TaskId taskId;
|
||||||
uint64 randomId = 0;
|
uint64 randomId = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue