diff options
author | Rhett Aultman <roadriverrail@gmail.com> | 2017-04-29 08:43:19 +0800 |
---|---|---|
committer | Rhett Aultman <roadriverrail@gmail.com> | 2017-04-29 08:43:19 +0800 |
commit | e544698ad3a2101e3d910d0761571d4fa20144e8 (patch) | |
tree | 05195e18c017d61f873a74b3fbc28fdea969b30e /Changelog.md | |
parent | f33614e1f7c85126b8f1a6d007f5824f6dce237d (diff) | |
download | dexon-solidity-e544698ad3a2101e3d910d0761571d4fa20144e8.tar.gz dexon-solidity-e544698ad3a2101e3d910d0761571d4fa20144e8.tar.zst dexon-solidity-e544698ad3a2101e3d910d0761571d4fa20144e8.zip |
Deprecate use of unary '+'
The unary '+' serves no meaningful purpose in Solidity and it makes it
possible to produce typos with dagerous implications (e.g. 'a =+5 '),
so we are deprecating it. The SyntaxChecker currently issues warnings
on the unary '+' but will still compile it for now.
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 cd54aadb..c95cab5a 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. + * Syntax checker: issue deprecation warning for unary '+' Bugfixes: * Assembly output: Implement missing AssemblyItem types. |