mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
VM skips push data when looking for JUMPDEST.
Warnings fixes.
This commit is contained in:
parent
238aa0ee94
commit
9be5847472
6
Types.h
6
Types.h
@ -415,6 +415,9 @@ public:
|
||||
protected:
|
||||
virtual TypePointer binaryOperatorResultImpl(Token::Value _operator, TypePointer const& _this, TypePointer const& _other) const override
|
||||
{
|
||||
(void)_operator;
|
||||
(void)_this;
|
||||
(void)_other;
|
||||
return TypePointer();
|
||||
}
|
||||
|
||||
@ -445,6 +448,9 @@ public:
|
||||
protected:
|
||||
virtual TypePointer binaryOperatorResultImpl(Token::Value _operator, TypePointer const& _this, TypePointer const& _other) const override
|
||||
{
|
||||
(void)_operator;
|
||||
(void)_this;
|
||||
(void)_other;
|
||||
return TypePointer();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user