From 19cde80fd164f6c139283486a55d3acd8c8b00eb Mon Sep 17 00:00:00 2001 From: levlam Date: Thu, 5 Jan 2023 23:33:15 +0300 Subject: [PATCH] Reduce struct RawEvent size on some compilers. --- tddb/td/db/TQueue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tddb/td/db/TQueue.h b/tddb/td/db/TQueue.h index 1a587e01c..694e82831 100644 --- a/tddb/td/db/TQueue.h +++ b/tddb/td/db/TQueue.h @@ -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;