diff options
| author | Stefan Boberg <[email protected]> | 2023-05-11 13:49:02 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-05-11 13:49:02 +0200 |
| commit | 034a058c41d690a44ad5dd29998fe760b9895106 (patch) | |
| tree | 934d084f8307faf147e2d14137751e15cbbc2868 /src/zenstore/include | |
| parent | clang-format (diff) | |
| download | zen-034a058c41d690a44ad5dd29998fe760b9895106.tar.xz zen-034a058c41d690a44ad5dd29998fe760b9895106.zip | |
build fix (accidental commit on the wrong branch)
Diffstat (limited to 'src/zenstore/include')
| -rw-r--r-- | src/zenstore/include/zenstore/scrubcontext.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/zenstore/include/zenstore/scrubcontext.h b/src/zenstore/include/zenstore/scrubcontext.h index 0b884fcc6..95775c7b5 100644 --- a/src/zenstore/include/zenstore/scrubcontext.h +++ b/src/zenstore/include/zenstore/scrubcontext.h @@ -16,6 +16,9 @@ namespace zen { class ScrubContext { public: + ScrubContext(); + ~ScrubContext(); + virtual void ReportBadCidChunks(std::span<IoHash> BadCasChunks) { m_BadCid.AddHashesToSet(BadCasChunks); } inline uint64_t ScrubTimestamp() const { return m_ScrubTime; } inline bool RunRecovery() const { return m_Recover; } |