aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
Diffstat (limited to 'Types.h')
-rw-r--r--Types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Types.h b/Types.h
index 50d00a54..f73357a2 100644
--- a/Types.h
+++ b/Types.h
@@ -61,10 +61,10 @@ public:
static ptr<Type> 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