Warnings fixes.

Make Mix work with Qt 5.2
Minor other alterations.
This commit is contained in:
Gav Wood 2015-01-07 16:58:09 +01:00
parent a2375542e6
commit 238aa0ee94

View File

@ -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();
}
};