diff options
| author | Stefan Boberg <[email protected]> | 2021-06-02 10:17:56 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-06-02 10:17:56 +0200 |
| commit | 80f53661ecbd213d79cae036065650b29187511e (patch) | |
| tree | 83a8c3b059d161c143eb1d38c7841fcdf38f4489 | |
| parent | Added support for salt in oplog append operations, which can be used to avoid... (diff) | |
| download | zen-80f53661ecbd213d79cae036065650b29187511e.tar.xz zen-80f53661ecbd213d79cae036065650b29187511e.zip | |
clang-format
| -rw-r--r-- | zenstore/include/zenstore/CAS.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zenstore/include/zenstore/CAS.h b/zenstore/include/zenstore/CAS.h index 3f3f3007d..b4c97a6fd 100644 --- a/zenstore/include/zenstore/CAS.h +++ b/zenstore/include/zenstore/CAS.h @@ -49,9 +49,9 @@ public: bool New = false; }; - virtual void Initialize(const CasStoreConfiguration& Config) = 0; - virtual InsertResult InsertChunk(IoBuffer Data, const IoHash& ChunkHash) = 0; - virtual IoBuffer FindChunk(const IoHash& ChunkHash) = 0; + virtual void Initialize(const CasStoreConfiguration& Config) = 0; + virtual InsertResult InsertChunk(IoBuffer Data, const IoHash& ChunkHash) = 0; + virtual IoBuffer FindChunk(const IoHash& ChunkHash) = 0; protected: CasStoreConfiguration m_Config; |