diff options
author | chriseth <chris@ethereum.org> | 2017-05-03 17:53:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-03 17:53:36 +0800 |
commit | 1aa0f77af91143b0a083949e230dab9e0376ed65 (patch) | |
tree | d42bd37baecf419a90df823a219dc860b3517329 /Changelog.md | |
parent | c09f071ff693f52a2a1434cfd6963b2d1818776e (diff) | |
parent | f3bb7350f18fc083a49f72ec465f819e80f41d6f (diff) | |
download | dexon-solidity-1aa0f77af91143b0a083949e230dab9e0376ed65.tar.gz dexon-solidity-1aa0f77af91143b0a083949e230dab9e0376ed65.tar.zst dexon-solidity-1aa0f77af91143b0a083949e230dab9e0376ed65.zip |
Merge pull request #2139 from roadriverrail/warn_unused
Warn on unused local variables
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 c95cab5a..00400e26 100644 --- a/Changelog.md +++ b/Changelog.md @@ -10,6 +10,7 @@ Features: * Inline Assembly: Storage variable access using ``_slot`` and ``_offset`` suffixes. * Inline Assembly: Disallow blocks with unbalanced stack. * Static analyzer: Warn about statements without effects. + * Static analyzer: Warn about unused local variables, parameters, and return parameters. * Syntax checker: issue deprecation warning for unary '+' Bugfixes: |