Reduce struct RawEvent size on some compilers.

This commit is contained in:
levlam 2023-01-05 23:33:15 +03:00
parent c4afb9283c
commit 19cde80fd1
1 changed files with 1 additions and 1 deletions

View File

@ -61,9 +61,9 @@ class TQueue {
struct RawEvent {
uint64 log_event_id{0};
EventId event_id;
int32 expires_at{0};
string data;
int64 extra{0};
int32 expires_at{0};
};
using QueueId = int64;