Skip to content

Commit

Permalink
make VChunk CopyAssignable and CopyConstructible
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonYao287 committed Sep 14, 2023
1 parent 574c7df commit a42c48e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/include/homestore/vchunk.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Chunk;
class VChunk {
public:
VChunk(cshared< Chunk > const&);

~VChunk() = default;

void set_user_private(const sisl::blob& data);
Expand All @@ -34,6 +34,6 @@ class VChunk {
cshared< Chunk > get_internal_chunk() const;

private:
cshared< Chunk > internalChunk;
shared< Chunk > internalChunk;
};
}// namespace homestore
} // namespace homestore

0 comments on commit a42c48e

Please sign in to comment.