aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Types.h b/Types.h
index 6f3ca6ab..a91a6c24 100644
--- a/Types.h
+++ b/Types.h
@@ -415,6 +415,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();
}
@@ -445,6 +448,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();
}