diff options
| author | zousar <[email protected]> | 2025-09-22 16:38:15 -0600 |
|---|---|---|
| committer | zousar <[email protected]> | 2025-09-22 16:38:15 -0600 |
| commit | 1c591941878e5c5009d51a82ff61986a63bd2e11 (patch) | |
| tree | 3860ab5ebddf1919aab3cca019422fa76cfcdda4 /src/zenstore/include | |
| parent | Change batch put responses for client reporting (diff) | |
| parent | 5.7.2-pre1 (diff) | |
| download | zen-1c591941878e5c5009d51a82ff61986a63bd2e11.tar.xz zen-1c591941878e5c5009d51a82ff61986a63bd2e11.zip | |
Merge branch 'main' into zs/put-overwrite-policy-response
Diffstat (limited to 'src/zenstore/include')
| -rw-r--r-- | src/zenstore/include/zenstore/blockstore.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/zenstore/include/zenstore/blockstore.h b/src/zenstore/include/zenstore/blockstore.h index fce05766f..4006f4275 100644 --- a/src/zenstore/include/zenstore/blockstore.h +++ b/src/zenstore/include/zenstore/blockstore.h @@ -102,12 +102,12 @@ struct BlockStoreFile : public RefCounted IoBuffer GetMetaData() const; private: - std::filesystem::path GetMetaPath() const; - void RemoveMeta(); - const std::filesystem::path m_Path; - IoBuffer m_IoBuffer; - BasicFile m_File; - std::atomic<uint64_t> m_CachedFileSize = 0; + std::filesystem::path GetMetaPath() const; + void RemoveMeta(); + const std::filesystem::path m_Path; + IoBuffer m_IoBuffer; + BasicFile m_File; + mutable std::atomic<uint64_t> m_CachedFileSize = 0; }; class BlockStoreCompactState; |