Skip to content

Commit

Permalink
fix compilation error on clang-14
Browse files Browse the repository at this point in the history
  • Loading branch information
budevg committed Aug 13, 2024
1 parent a913d27 commit 023156b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cloud/blockstore/libs/nvme/nvme_stub.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ struct TDeallocateReq
ui64 Offset;
ui64 Size;

TDeallocateReq(ui64 offset, ui64 size)
: Offset(offset)
, Size(size)
{}

bool operator==(const TDeallocateReq& other) const
{
return Offset == other.Offset && Size == other.Size;
Expand Down

0 comments on commit 023156b

Please sign in to comment.