From 4ece1ba1d327175aa7cad9a01ee35b0de2eb861b Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 15 Oct 2014 18:50:15 +0200 Subject: [PATCH] Remove unused parameters. --- Types.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Types.h b/Types.h index 50d00a549..f73357a2f 100644 --- a/Types.h +++ b/Types.h @@ -61,10 +61,10 @@ public: static ptr forLiteral(Literal const& _literal); virtual Category getCategory() const = 0; - virtual bool isImplicitlyConvertibleTo(const Type& _convertTo) const { return false; } + virtual bool isImplicitlyConvertibleTo(const Type&) const { return false; } virtual bool isExplicitlyConvertibleTo(const Type& _convertTo) const { return isImplicitlyConvertibleTo(_convertTo); } - virtual bool acceptsBinaryOperator(Token::Value _operator) const { return false; } - virtual bool acceptsUnaryOperator(Token::Value _operator) const { return false; } + virtual bool acceptsBinaryOperator(Token::Value) const { return false; } + virtual bool acceptsUnaryOperator(Token::Value) const { return false; } }; class IntegerType : public Type