diff options
Diffstat (limited to 'zenstore/cidstore.cpp')
| -rw-r--r-- | zenstore/cidstore.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/zenstore/cidstore.cpp b/zenstore/cidstore.cpp index e1b7ac656..6dd33efb2 100644 --- a/zenstore/cidstore.cpp +++ b/zenstore/cidstore.cpp @@ -91,6 +91,7 @@ struct CidStore::CidState } void Flush() { m_LogFile.Flush(); } + void Scrub(ScrubContext& Ctx) { ZEN_UNUSED(Ctx); } }; ////////////////////////////////////////////////////////////////////////// @@ -134,4 +135,10 @@ CidStore::Flush() m_Impl->Flush(); } +void +CidStore::Scrub(ScrubContext& Ctx) +{ + m_Impl->Scrub(Ctx); +} + } // namespace zen |