aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-04-10 20:05:06 +0800
committerGitHub <noreply@github.com>2018-04-10 20:05:06 +0800
commit2bc4ec31e2526abac57ac2864fa5c4bc4a7cd3a1 (patch)
treef92b9aa6f448523fca1730e7441f52d56a621e93 /Changelog.md
parent0546a36acadee769b2f7ab6b86a1cf2e1da860ba (diff)
parent3eedbc6a9c60888dd967d6673a34511947da4aa1 (diff)
downloaddexon-solidity-2bc4ec31e2526abac57ac2864fa5c4bc4a7cd3a1.tar.gz
dexon-solidity-2bc4ec31e2526abac57ac2864fa5c4bc4a7cd3a1.tar.zst
dexon-solidity-2bc4ec31e2526abac57ac2864fa5c4bc4a7cd3a1.zip
Merge pull request #3853 from ethereum/modifierStyleWithoutParentheses
Modifier style constructor calls without parentheses are an error.
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/Changelog.md b/Changelog.md
index 3b8cba1d..eb35652f 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -12,7 +12,8 @@ Features:
* 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.
+ * Inheritance: Error when using empty parentheses for base class constructors that require arguments as experimental 0.5.0 feature.
+ * Inheritance: Error when using no parentheses in modifier-style constructor calls as experimental 0.5.0 feature.
Bugfixes:
* Code Generator: Allow ``block.blockhash`` without being called.