diff options
author | Christian Parpart <christian@parpart.family> | 2018-06-06 17:15:22 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-14 07:24:43 +0800 |
commit | a211b8911885ded6ddcd4d7400994a85235fe8e4 (patch) | |
tree | de225bc1e0f6f0dc29ab7984088752106dbfe5cd /Changelog.md | |
parent | 014bbc6c97a4abdf8eed5d0273d00c80308e355d (diff) | |
download | dexon-solidity-a211b8911885ded6ddcd4d7400994a85235fe8e4.tar.gz dexon-solidity-a211b8911885ded6ddcd4d7400994a85235fe8e4.tar.zst dexon-solidity-a211b8911885ded6ddcd4d7400994a85235fe8e4.zip |
Enforce disallowing empty structs
This patch enfoces an error when it encounters an empty struct,
effectively eliminating the deprecation warning.
Also adjust 419_interface_structs to explicitely test for (non-empty) structs,
as this behaviour "may" change in the future.
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 61a6c693..c87a5380 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,6 +6,7 @@ Breaking Changes: * Commandline interface: Remove obsolete ``--formal`` option. * Commandline interface: Require ``-`` if standard input is used as source. * General: ``continue`` in a ``do...while`` loop jumps to the condition (it used to jump to the loop body). Warning: this may silently change the semantics of existing code. + * General: Disallow declaring empty structs. * General: Disallow ``sha3`` and ``suicide`` aliases. * General: Introduce ``emit`` as a keyword instead of parsing it as identifier. * General: New keywords: ``calldata`` |