We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e20c206 + 15796ba commit c91c204Copy full SHA for c91c204
liblangutil/EVMVersion.cpp
@@ -29,7 +29,7 @@ using namespace solidity::langutil;
29
bool EVMVersion::hasOpcode(Instruction _opcode, std::optional<uint8_t> _eofVersion) const
30
{
31
// EOF version can be only defined since prague
32
- assert(!_eofVersion.has_value() || this->m_version >= prague());
+ assert(!_eofVersion.has_value() || *this >= prague());
33
34
switch (_opcode)
35
0 commit comments