network.socket.Linger.enabled: Add return type

network.socket.Linger.enabled: Add missing return type (void).
This commit is contained in:
Eugen Wissner 2018-07-25 05:40:49 +02:00
parent d62f29abd1
commit 24056d53c5
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ struct Linger
*
* See_Also: $(D_PSYMBOL time).
*/
@property enabled(const bool value) pure nothrow @safe @nogc
@property void enabled(const bool value) pure nothrow @safe @nogc
{
this.l_onoff = value;
}