From 096a1995af423783d86194f12c64f904e40bd9c6 Mon Sep 17 00:00:00 2001 From: Martin Ridgers Date: Tue, 17 Sep 2024 15:59:15 +0200 Subject: Reinstate member initialisation that was there originally --- src/zenserver/projectstore/projectstore.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/zenserver/projectstore/projectstore.h b/src/zenserver/projectstore/projectstore.h index 891821382..273a6d5c4 100644 --- a/src/zenserver/projectstore/projectstore.h +++ b/src/zenserver/projectstore/projectstore.h @@ -97,8 +97,8 @@ public: struct Paging { - int32_t Start; - int32_t Count; + int32_t Start = -1; + int32_t Count = -1; }; std::vector GetAllChunksInfo(); -- cgit v1.2.3