diff options
| author | Stefan Boberg <[email protected]> | 2021-08-17 15:18:37 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-08-17 15:18:51 +0200 |
| commit | 9deb4d7904deff765e034c2528dfca93b6cdb714 (patch) | |
| tree | 531616ce61b0cf062d38e1a5421183639d22344f /zenstore/basicfile.cpp | |
| parent | Merge branch 'main' of https://github.com/EpicGames/zen into main (diff) | |
| download | zen-9deb4d7904deff765e034c2528dfca93b6cdb714.tar.xz zen-9deb4d7904deff765e034c2528dfca93b6cdb714.zip | |
Implemented support for dropping z$ buckets while online
Diffstat (limited to 'zenstore/basicfile.cpp')
| -rw-r--r-- | zenstore/basicfile.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/zenstore/basicfile.cpp b/zenstore/basicfile.cpp index 7f10fc5e6..35ccdd042 100644 --- a/zenstore/basicfile.cpp +++ b/zenstore/basicfile.cpp @@ -83,4 +83,10 @@ BasicFile::FileSize() return uint64_t(Sz); } +void +BasicFile::Close() +{ + m_File.Close(); +} + } // namespace zen |