diff options
author | Gav Wood <i@gavwood.com> | 2015-01-08 03:23:33 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-01-08 03:23:33 +0800 |
commit | 9be58474729c918fb40e4f264d25d74d7a162607 (patch) | |
tree | 7f4bb5a1becad7505a04da883ea9567355d180e5 /Types.h | |
parent | 238aa0ee9405f8e6d24611bca2858b980bbcba87 (diff) | |
download | dexon-solidity-9be58474729c918fb40e4f264d25d74d7a162607.tar dexon-solidity-9be58474729c918fb40e4f264d25d74d7a162607.tar.gz dexon-solidity-9be58474729c918fb40e4f264d25d74d7a162607.tar.bz2 dexon-solidity-9be58474729c918fb40e4f264d25d74d7a162607.tar.lz dexon-solidity-9be58474729c918fb40e4f264d25d74d7a162607.tar.xz dexon-solidity-9be58474729c918fb40e4f264d25d74d7a162607.tar.zst dexon-solidity-9be58474729c918fb40e4f264d25d74d7a162607.zip |
VM skips push data when looking for JUMPDEST.
Warnings fixes.
Diffstat (limited to 'Types.h')
-rw-r--r-- | Types.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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(); } |