From 9be58474729c918fb40e4f264d25d74d7a162607 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Wed, 7 Jan 2015 20:23:33 +0100 Subject: [PATCH] VM skips push data when looking for JUMPDEST. Warnings fixes. --- Types.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Types.h b/Types.h index 6f3ca6abf..a91a6c24e 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(); }