diff options
author | chriseth <chris@ethereum.org> | 2018-11-29 18:17:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-29 18:17:33 +0800 |
commit | f6d013237d8b20c73e198b21d652872b236e34d0 (patch) | |
tree | 9fddbd948f847164de481cfa7296cb5dc0098f23 /libsolidity/codegen/CompilerUtils.h | |
parent | 74f70516509da9af79df345b2668a02f87c909fd (diff) | |
parent | 9326adc3db513353da51d9732d1c92b33ecd4d16 (diff) | |
download | dexon-solidity-f6d013237d8b20c73e198b21d652872b236e34d0.tar dexon-solidity-f6d013237d8b20c73e198b21d652872b236e34d0.tar.gz dexon-solidity-f6d013237d8b20c73e198b21d652872b236e34d0.tar.bz2 dexon-solidity-f6d013237d8b20c73e198b21d652872b236e34d0.tar.lz dexon-solidity-f6d013237d8b20c73e198b21d652872b236e34d0.tar.xz dexon-solidity-f6d013237d8b20c73e198b21d652872b236e34d0.tar.zst dexon-solidity-f6d013237d8b20c73e198b21d652872b236e34d0.zip |
Merge pull request #5538 from hydai/static_uint256
Replace IntegerType(256) with static function IntegerType::uint256()
Diffstat (limited to 'libsolidity/codegen/CompilerUtils.h')
-rw-r--r-- | libsolidity/codegen/CompilerUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/CompilerUtils.h b/libsolidity/codegen/CompilerUtils.h index bd8170ad..5f7dce22 100644 --- a/libsolidity/codegen/CompilerUtils.h +++ b/libsolidity/codegen/CompilerUtils.h @@ -69,7 +69,7 @@ public: /// @returns the number of bytes consumed in memory. unsigned loadFromMemory( unsigned _offset, - Type const& _type = IntegerType(256), + Type const& _type = IntegerType::uint256(), bool _fromCalldata = false, bool _padToWords = false ); |