aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorFederico Bond <federicobond@gmail.com>2017-06-22 21:59:00 +0800
committerchriseth <chris@ethereum.org>2017-06-23 17:19:57 +0800
commit0fb1621a983025d41ef05d1156bc167ce4490259 (patch)
treefa6fd548c9445329cdd8aff735c2ec59e77bb647 /Changelog.md
parentb86a4cad5702896068459f54993d59a7cd1c889f (diff)
downloaddexon-solidity-0fb1621a983025d41ef05d1156bc167ce4490259.tar
dexon-solidity-0fb1621a983025d41ef05d1156bc167ce4490259.tar.gz
dexon-solidity-0fb1621a983025d41ef05d1156bc167ce4490259.tar.bz2
dexon-solidity-0fb1621a983025d41ef05d1156bc167ce4490259.tar.lz
dexon-solidity-0fb1621a983025d41ef05d1156bc167ce4490259.tar.xz
dexon-solidity-0fb1621a983025d41ef05d1156bc167ce4490259.tar.zst
dexon-solidity-0fb1621a983025d41ef05d1156bc167ce4490259.zip
Fix address literals not being treated as compile-time constants
The early return implemented for address literals in TypeChecker was preventing the isPure annotation from getting applied. Closes #2441
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md
index 6f0d76d6..4dc79827 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -13,6 +13,7 @@ Features:
* Code Generator: Added the Whiskers template system.
Bugfixes:
+ * Type Checker: Fix address literals not being treated as compile-time constants.
* Type Checker: Make UTF8-validation a bit more sloppy to include more valid sequences.
* Fixed crash concerning non-callable types.
* Unused variable warnings no longer issued for variables used inside inline assembly.