Rename async.loop.Loop.done_ to done

Since there is no property with a conflicting name.
This commit is contained in:
2017-02-04 14:55:52 +01:00
parent 241767df13
commit 43c28b749d
4 changed files with 12 additions and 6 deletions

View File

@ -322,6 +322,8 @@ struct SList(T)
*
* Params:
* dg = $(D_KEYWORD foreach) body.
*
* Returns: The value returned from $(D_PARAM dg).
*/
int opApply(scope int delegate(ref size_t i, ref T) @nogc dg)
{

View File

@ -190,6 +190,8 @@ struct Queue(T)
*
* Params:
* dg = $(D_KEYWORD foreach) body.
*
* Returns: The value returned from $(D_PARAM dg).
*/
int opApply(scope int delegate(ref size_t i, ref T) @nogc dg)
{

View File

@ -1123,6 +1123,8 @@ struct Vector(T)
*
* Params:
* dg = $(D_KEYWORD foreach) body.
*
* Returns: The value returned from $(D_PARAM dg).
*/
int opApply(scope int delegate(ref T) @nogc dg)
{