mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix build by adding return.
This commit is contained in:
@@ -391,6 +391,11 @@ bytes BinaryTransform::operator()(BreakIf const&)
|
||||
return {};
|
||||
}
|
||||
|
||||
bytes BinaryTransform::operator()(Return const&)
|
||||
{
|
||||
return toBytes(Opcode::Return);
|
||||
}
|
||||
|
||||
bytes BinaryTransform::operator()(Block const& _block)
|
||||
{
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user