diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-04-04 18:28:22 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-04-09 21:26:05 +0800 |
commit | b8fdb666e235bb6b19f11dba7740227026111598 (patch) | |
tree | 052d6a730b300e6c976759ac993d879153082c08 /Changelog.md | |
parent | 4e037281acaf74c907f68e6227d6aa1b8847c78d (diff) | |
download | dexon-solidity-b8fdb666e235bb6b19f11dba7740227026111598.tar.gz dexon-solidity-b8fdb666e235bb6b19f11dba7740227026111598.tar.zst dexon-solidity-b8fdb666e235bb6b19f11dba7740227026111598.zip |
Allow duplicated constructor calls, if no arguments; support for multiple inheritance; backwards compatibility.
# tmp
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Changelog.md b/Changelog.md index 94703f7d..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. @@ -28,7 +29,6 @@ Bugfixes: * Type System: Make external library functions accessible. * Type System: Prevent encoding of weird types. * Static Analyzer: Fix non-deterministic order of unused variable warnings. - * Static Analyzer: Error on duplicated super constructor calls. ### 0.4.21 (2018-03-07) |