aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2015-01-07 23:58:09 +0800
committerGav Wood <i@gavwood.com>2015-01-07 23:58:09 +0800
commit238aa0ee9405f8e6d24611bca2858b980bbcba87 (patch)
tree9497bff3fb3e03216434a353dfffe856bcfaa79e /Types.h
parenta2375542e6d369da4669ba2e29db08b89a19b17f (diff)
downloaddexon-solidity-238aa0ee9405f8e6d24611bca2858b980bbcba87.tar.gz
dexon-solidity-238aa0ee9405f8e6d24611bca2858b980bbcba87.tar.zst
dexon-solidity-238aa0ee9405f8e6d24611bca2858b980bbcba87.zip
Warnings fixes.
Make Mix work with Qt 5.2 Minor other alterations.
Diffstat (limited to 'Types.h')
-rw-r--r--Types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Types.h b/Types.h
index ff8a4887..6f3ca6ab 100644
--- a/Types.h
+++ b/Types.h
@@ -387,6 +387,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();
}
};