diff options
author | chriseth <chris@ethereum.org> | 2018-08-09 06:49:04 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-08-13 20:38:12 +0800 |
commit | bd567a22c9e901d2c7ae73a63f63dc56896b9461 (patch) | |
tree | 12ee1ec678075ee62fc10154a0e1bda64a9898c4 /Changelog.md | |
parent | a2c754b3fed422b3d8027a5298624bcfed3744a5 (diff) | |
download | dexon-solidity-bd567a22c9e901d2c7ae73a63f63dc56896b9461.tar.gz dexon-solidity-bd567a22c9e901d2c7ae73a63f63dc56896b9461.tar.zst dexon-solidity-bd567a22c9e901d2c7ae73a63f63dc56896b9461.zip |
Defaul data location for type conversions is memory.
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index 56e00003..bb81dbd4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -91,6 +91,7 @@ Bugfixes: * References Resolver: Enforce ``storage`` as data location for mappings. * References Resolver: Properly handle invalid references used together with ``_slot`` and ``_offset``. * References Resolver: Report error instead of assertion fail when FunctionType has an undeclared type as parameter. + * Type Checker: Default data location for type conversions (e.g. from literals) is memory and not storage. * Type Checker: Disallow assignments to mappings within tuple assignments as well. * Type Checker: Allow assignments to local variables of mapping types. * Type Checker: Consider fixed size arrays when checking for recursive structs. |