Skip to content

Commit

Permalink
Remove extra inheritence. (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd authored Sep 14, 2023
1 parent ee2a2eb commit 57fe3e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/memory/homeobject.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ inline bool operator==(BlobRoute const& lhs, BlobRoute const& rhs) {
// Used to TombStone Blob's in the Index to defer for GC.
ENUM(BlobState, uint8_t, ALIVE = 0, DELETED);

struct BlobExt : public Blob {
struct BlobExt {
BlobState _state{BlobState::DELETED};
Blob* _blob;

Expand Down

0 comments on commit 57fe3e6

Please sign in to comment.