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 | |
| parent | clang-format (diff) | |
| download | zen-034a058c41d690a44ad5dd29998fe760b9895106.tar.xz zen-034a058c41d690a44ad5dd29998fe760b9895106.zip | |
build fix (accidental commit on the wrong branch)
Diffstat (limited to 'src')
| -rw-r--r-- | src/zenstore/include/zenstore/scrubcontext.h | 3 | ||||
| -rw-r--r-- | src/zenstore/scrubcontext.cpp | 2 |
2 files changed, 4 insertions, 1 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; } diff --git a/src/zenstore/scrubcontext.cpp b/src/zenstore/scrubcontext.cpp index d471f0fca..f35178de6 100644 --- a/src/zenstore/scrubcontext.cpp +++ b/src/zenstore/scrubcontext.cpp @@ -6,7 +6,7 @@ namespace zen { -ScrubContext::ScrubContext(WorkerThreadPool& InWorkerThreadPool) +ScrubContext::ScrubContext() { } |