diff options
| author | Dan Engelbrecht <[email protected]> | 2022-03-16 11:55:14 +0100 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-03-31 11:28:32 +0200 |
| commit | 1950bc755368ec47c0307e58aa7c1bbcf178357b (patch) | |
| tree | d7d9acd53a43d85ad22c4e0957c91e2171d3b327 | |
| parent | Migrate old store format to blocks (diff) | |
| download | zen-1950bc755368ec47c0307e58aa7c1bbcf178357b.tar.xz zen-1950bc755368ec47c0307e58aa7c1bbcf178357b.zip | |
Use proper hash function m_ChunkSet
| -rw-r--r-- | zenstore/include/zenstore/cas.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenstore/include/zenstore/cas.h b/zenstore/include/zenstore/cas.h index 7a7233c1c..5592fbd0a 100644 --- a/zenstore/include/zenstore/cas.h +++ b/zenstore/include/zenstore/cas.h @@ -69,7 +69,7 @@ public: private: // Q: should we protect this with a lock, or is that a higher level concern? - std::unordered_set<IoHash> m_ChunkSet; + std::unordered_set<IoHash, IoHash::Hasher> m_ChunkSet; }; /** Context object for data scrubbing |