aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-10-16 00:50:15 +0800
committerChristian <c@ethdev.com>2014-10-16 00:50:15 +0800
commit4ece1ba1d327175aa7cad9a01ee35b0de2eb861b (patch)
tree1fb4d6afa7dc436415145bed571b73317f513f11 /Types.h
parentd557fbac9c39e6e2b40ff4c4a3093be2f08df602 (diff)
downloaddexon-solidity-4ece1ba1d327175aa7cad9a01ee35b0de2eb861b.tar
dexon-solidity-4ece1ba1d327175aa7cad9a01ee35b0de2eb861b.tar.gz
dexon-solidity-4ece1ba1d327175aa7cad9a01ee35b0de2eb861b.tar.bz2
dexon-solidity-4ece1ba1d327175aa7cad9a01ee35b0de2eb861b.tar.lz
dexon-solidity-4ece1ba1d327175aa7cad9a01ee35b0de2eb861b.tar.xz
dexon-solidity-4ece1ba1d327175aa7cad9a01ee35b0de2eb861b.tar.zst
dexon-solidity-4ece1ba1d327175aa7cad9a01ee35b0de2eb861b.zip
Remove unused parameters.
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