diff options
author | Gav Wood <i@gavwood.com> | 2015-01-07 23:58:09 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-01-07 23:58:09 +0800 |
commit | 238aa0ee9405f8e6d24611bca2858b980bbcba87 (patch) | |
tree | 9497bff3fb3e03216434a353dfffe856bcfaa79e | |
parent | a2375542e6d369da4669ba2e29db08b89a19b17f (diff) | |
download | dexon-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.
-rw-r--r-- | Types.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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(); } }; |