diff --git a/Types.h b/Types.h index ff8a48877..6f3ca6abf 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(); } };