diff options
| author | Martin Ridgers <[email protected]> | 2024-09-17 12:53:46 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2024-09-19 15:26:13 +0200 |
| commit | 8579220fe01876bf93eaa6654d2950e91662c6ec (patch) | |
| tree | 6f301038bef1e4c16a2ebf1244cee39e12a5f320 /src | |
| parent | A clang-format pass (diff) | |
| download | zen-8579220fe01876bf93eaa6654d2950e91662c6ec.tar.xz zen-8579220fe01876bf93eaa6654d2950e91662c6ec.zip | |
Removed redundant initialisation
Diffstat (limited to 'src')
| -rw-r--r-- | src/zenserver/projectstore/projectstore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenserver/projectstore/projectstore.h b/src/zenserver/projectstore/projectstore.h index 10008f989..f98ac7f11 100644 --- a/src/zenserver/projectstore/projectstore.h +++ b/src/zenserver/projectstore/projectstore.h @@ -97,8 +97,8 @@ public: struct Paging { - int32_t Start = -1; - int32_t Count = -1; + int32_t Start; + int32_t Count; }; std::vector<ChunkInfo> GetAllChunksInfo(); |