diff options
author | chriseth <chris@ethereum.org> | 2017-07-06 03:14:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-06 03:14:06 +0800 |
commit | 4bde6fa96122a308296e00dfb32da25905c5ef34 (patch) | |
tree | 78ca85f3fa9834cdd54ad77449704337603b500f /Changelog.md | |
parent | 2dd9070a4f8426fb16a4d611f21ed0f98f670195 (diff) | |
parent | dd34277ca60fcd9803a6fbb5a5944a1ed2533c73 (diff) | |
download | dexon-solidity-4bde6fa96122a308296e00dfb32da25905c5ef34.tar dexon-solidity-4bde6fa96122a308296e00dfb32da25905c5ef34.tar.gz dexon-solidity-4bde6fa96122a308296e00dfb32da25905c5ef34.tar.bz2 dexon-solidity-4bde6fa96122a308296e00dfb32da25905c5ef34.tar.lz dexon-solidity-4bde6fa96122a308296e00dfb32da25905c5ef34.tar.xz dexon-solidity-4bde6fa96122a308296e00dfb32da25905c5ef34.tar.zst dexon-solidity-4bde6fa96122a308296e00dfb32da25905c5ef34.zip |
Merge pull request #2528 from ethereum/warnNoStorage
Warn if local storage reference variable does not use "storage" explicitly.
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index 80e85858..c5085f1b 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,8 @@ ### 0.4.13 (unreleased) +Features: + * Type Checker: Warn if a local storage reference variable does not explicitly use the keyword ``storage``. + Bugfixes: * Compiler Interface: Only output AST if analysis was successful. * Code Generator: Correctly unregister modifier variables. |