that was all the fixes (hopefully)

This commit is contained in:
2023-06-24 20:57:54 +02:00
parent 04f4eedb78
commit 25d10e3877
2 changed files with 31 additions and 23 deletions

View File

@ -39,9 +39,9 @@ struct PersistentTmStoreArgs {
};
struct DumpIndex {
uint32_t epoch;
uint32_t epoch = 0;
// Number of additional files with a suffix like .0, .1 etc.
uint8_t additionalFiles;
uint8_t additionalFiles = 0;
// Define a custom comparison function based on the epoch variable
bool operator<(const DumpIndex& other) const { return epoch < other.epoch; }
};