diff options
| author | Stefan Boberg <[email protected]> | 2021-10-19 22:30:12 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-10-19 22:30:12 +0200 |
| commit | fd265afc084448530f963820667271c2af52644f (patch) | |
| tree | 7268132380167735fa35bd4255194d3ff8ebe34d /zenstore/gc.cpp | |
| parent | Merge branch 'gc' of https://github.com/EpicGames/zen into gc (diff) | |
| parent | Merge branch 'gc' of https://github.com/EpicGames/zen into gc (diff) | |
| download | zen-fd265afc084448530f963820667271c2af52644f.tar.xz zen-fd265afc084448530f963820667271c2af52644f.zip | |
Merge from main
Diffstat (limited to 'zenstore/gc.cpp')
| -rw-r--r-- | zenstore/gc.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/zenstore/gc.cpp b/zenstore/gc.cpp index c25ea344c..612cceed9 100644 --- a/zenstore/gc.cpp +++ b/zenstore/gc.cpp @@ -80,4 +80,16 @@ CasGc::OnNewCidReferences(std::span<IoHash> Hashes) ZEN_UNUSED(Hashes); } +void +CasGc::OnCommittedCidReferences(std::span<IoHash> Hashes) +{ + ZEN_UNUSED(Hashes); +} + +void +CasGc::OnDroppedCidReferences(std::span<IoHash> Hashes) +{ + ZEN_UNUSED(Hashes); +} + } // namespace zen |