diff options
author | Christian <c@ethdev.com> | 2015-02-06 20:38:10 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-02-06 20:38:29 +0800 |
commit | 82edc1ca6d694ad022c6b0e251da70393dfeb38a (patch) | |
tree | 862dc4a01f217ae4a71feb90f64cd901bda2b32a /Types.h | |
parent | 16fc2d651e1a96e3f86d98a8b3fb1fa43c9b20c1 (diff) | |
download | dexon-solidity-82edc1ca6d694ad022c6b0e251da70393dfeb38a.tar.gz dexon-solidity-82edc1ca6d694ad022c6b0e251da70393dfeb38a.tar.zst dexon-solidity-82edc1ca6d694ad022c6b0e251da70393dfeb38a.zip |
Some fixes for the ether units parser.
Diffstat (limited to 'Types.h')
-rw-r--r-- | Types.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -197,8 +197,7 @@ class IntegerConstantType: public Type public: virtual Category getCategory() const override { return Category::INTEGER_CONSTANT; } - static std::shared_ptr<IntegerConstantType const> fromLiteral(std::string const& _literal); - + explicit IntegerConstantType(Literal const& _literal); explicit IntegerConstantType(bigint _value): m_value(_value) {} virtual bool isImplicitlyConvertibleTo(Type const& _convertTo) const override; |