From 238aa0ee9405f8e6d24611bca2858b980bbcba87 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Wed, 7 Jan 2015 16:58:09 +0100 Subject: Warnings fixes. Make Mix work with Qt 5.2 Minor other alterations. --- Types.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Types.h') 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(); } }; -- cgit