Skip to content

Commit

Permalink
Remove implicit blockId boolean conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
r0qs committed Aug 20, 2024
1 parent a56bcfc commit 80b08bc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion libyul/backends/evm/SSAControlFlowGraph.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ class SSACFG
struct BlockId
{
size_t value = std::numeric_limits<size_t>::max();
operator bool() const { return value != std::numeric_limits<size_t>::max(); }
bool operator<(BlockId const& _rhs) const { return value < _rhs.value; }
bool operator==(BlockId const& _rhs) const { return value == _rhs.value; }
bool operator!=(BlockId const& _rhs) const { return value != _rhs.value; }
Expand Down

0 comments on commit 80b08bc

Please sign in to comment.