diff options
author | chriseth <c@ethdev.com> | 2015-03-31 20:59:38 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-04-16 00:06:41 +0800 |
commit | 5216a9bc678597c0076b2e8615cac43c9077a95e (patch) | |
tree | ec2ec1dc821bfb0348458eaadf1b4336d7d609ad /Types.h | |
parent | e1b20fb3a10f629aff172399c6e6111c941f931d (diff) | |
download | dexon-solidity-5216a9bc678597c0076b2e8615cac43c9077a95e.tar.gz dexon-solidity-5216a9bc678597c0076b2e8615cac43c9077a95e.tar.zst dexon-solidity-5216a9bc678597c0076b2e8615cac43c9077a95e.zip |
Some cleanup concerning byte arrays.
Diffstat (limited to 'Types.h')
-rw-r--r-- | Types.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -345,7 +345,7 @@ public: explicit ArrayType(Location _location): m_location(_location), m_isByteArray(true), - m_baseType(std::make_shared<FixedBytesType>(8)) + m_baseType(std::make_shared<FixedBytesType>(1)) {} /// Constructor for a dynamically sized array type ("type[]") ArrayType(Location _location, const TypePointer &_baseType): |