mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
DocStringParser: Add Changelog entry and test case for empty descriptions.
This commit is contained in:
parent
0d0c9b8688
commit
9d079fd126
@ -6,6 +6,7 @@ Bugfixes:
|
|||||||
* Code Generator: Properly skip unneeded storgae array cleanup when not reducing length.
|
* Code Generator: Properly skip unneeded storgae array cleanup when not reducing length.
|
||||||
* Commandline interface: Support ``--evm-version constantinople`` properly.
|
* Commandline interface: Support ``--evm-version constantinople`` properly.
|
||||||
* Standard JSON: Support ``constantinople`` as ``evmVersion`` properly.
|
* Standard JSON: Support ``constantinople`` as ``evmVersion`` properly.
|
||||||
|
* DocString Parser: Fix error message for empty descriptions.
|
||||||
|
|
||||||
### 0.4.21 (2018-03-07)
|
### 0.4.21 (2018-03-07)
|
||||||
|
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
contract C {
|
||||||
|
/// @param id
|
||||||
|
function vote(uint id) public;
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// DocstringParsingError: No description given for param id
|
Loading…
Reference in New Issue
Block a user