diff options
author | Christian <c@ethdev.com> | 2014-10-16 00:50:15 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-10-16 00:50:15 +0800 |
commit | 4ece1ba1d327175aa7cad9a01ee35b0de2eb861b (patch) | |
tree | 1fb4d6afa7dc436415145bed571b73317f513f11 /Types.h | |
parent | d557fbac9c39e6e2b40ff4c4a3093be2f08df602 (diff) | |
download | dexon-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.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |