diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-05-14 21:26:10 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-05-17 00:32:48 +0800 |
commit | f627dc77d01a9367b41d4a2e1654f045f9e4264a (patch) | |
tree | 3cf5a334c9746e7516537120a4a5e1569dcbe28d /Changelog.md | |
parent | 90528a2867033359afc25cdc0915b76b21e3ff58 (diff) | |
download | dexon-solidity-f627dc77d01a9367b41d4a2e1654f045f9e4264a.tar.gz dexon-solidity-f627dc77d01a9367b41d4a2e1654f045f9e4264a.tar.zst dexon-solidity-f627dc77d01a9367b41d4a2e1654f045f9e4264a.zip |
Fix continue inside do-while.
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 4fa6ae55..c31aced2 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,7 @@ Breaking Changes: * Disallow conversions between bytesX and uintY of different size. * 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. * Type Checker: Disallow arithmetic operations for Boolean variables. Features: |