diff options
author | chriseth <chris@ethereum.org> | 2018-04-10 17:39:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-10 17:39:31 +0800 |
commit | b52614116e9c72d840b375b0bbb1c56a63df3680 (patch) | |
tree | f60709e1daf118eb20598598b2497270e4ffa299 /Changelog.md | |
parent | 27385d6dedca067f0e234f0301c2bb0e914cff15 (diff) | |
parent | 549ba801fb2a175cfb24e3c83b63030f47984e95 (diff) | |
download | dexon-solidity-b52614116e9c72d840b375b0bbb1c56a63df3680.tar dexon-solidity-b52614116e9c72d840b375b0bbb1c56a63df3680.tar.gz dexon-solidity-b52614116e9c72d840b375b0bbb1c56a63df3680.tar.bz2 dexon-solidity-b52614116e9c72d840b375b0bbb1c56a63df3680.tar.lz dexon-solidity-b52614116e9c72d840b375b0bbb1c56a63df3680.tar.xz dexon-solidity-b52614116e9c72d840b375b0bbb1c56a63df3680.tar.zst dexon-solidity-b52614116e9c72d840b375b0bbb1c56a63df3680.zip |
Merge pull request #3821 from ethereum/warn-constructor-override
Warn constructor override
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 d1e199b7..3b8cba1d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,6 +9,7 @@ Features: * Optimizer: Remove useless ``SWAP1`` instruction preceding a commutative instruction (such as ``ADD``, ``MUL``, etc). * Optimizer: Replace comparison operators (``LT``, ``GT``, etc) with opposites if preceded by ``SWAP1``, e.g. ``SWAP1 LT`` is replaced with ``GT``. * Optimizer: Optimize across ``mload`` if ``msize()`` is not used. + * Static Analyzer: Error on duplicated super constructor calls as experimental 0.5.0 feature. * Syntax Checker: Issue warning for empty structs (or error as experimental 0.5.0 feature). * General: Introduce new constructor syntax using the ``constructor`` keyword as experimental 0.5.0 feature. * Inheritance: Error when using empty parenthesis for base class constructors that require arguments as experimental 0.5.0 feature. |