DocStringParser: Add Changelog entry and test case for empty descriptions.

This commit is contained in:
Daniel Kirchner 2018-03-14 10:34:16 +01:00
parent 0d0c9b8688
commit 9d079fd126
2 changed files with 7 additions and 0 deletions

View File

@ -6,6 +6,7 @@ Bugfixes:
* Code Generator: Properly skip unneeded storgae array cleanup when not reducing length.
* Commandline interface: Support ``--evm-version constantinople`` properly.
* Standard JSON: Support ``constantinople`` as ``evmVersion`` properly.
* DocString Parser: Fix error message for empty descriptions.
### 0.4.21 (2018-03-07)

View File

@ -0,0 +1,6 @@
contract C {
/// @param id
function vote(uint id) public;
}
// ----
// DocstringParsingError: No description given for param id