aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2015-01-08 03:23:33 +0800
committerGav Wood <i@gavwood.com>2015-01-08 03:23:33 +0800
commit9be58474729c918fb40e4f264d25d74d7a162607 (patch)
tree7f4bb5a1becad7505a04da883ea9567355d180e5 /Types.h
parent238aa0ee9405f8e6d24611bca2858b980bbcba87 (diff)
downloaddexon-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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Types.h b/Types.h
index 6f3ca6ab..a91a6c24 100644
--- a/Types.h
+++ b/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();
}