Skip to content

Commit

Permalink
Made cycle's DollarToken private.
Browse files Browse the repository at this point in the history
There's no reason for anyone to use it directly, so it's better for it
to be private.
  • Loading branch information
jmdavis committed Jan 13, 2013
1 parent c1c7ade commit 9bab839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/range.d
Expand Up @@ -3828,7 +3828,7 @@ struct Cycle(Range)
return Cycle(this._original.save, this._index);
}

static struct DollarToken {}
private static struct DollarToken {}

DollarToken opDollar()
{
Expand Down Expand Up @@ -3928,7 +3928,7 @@ struct Cycle(R)
return this;
}

static struct DollarToken {}
private static struct DollarToken {}

DollarToken opDollar()
{
Expand Down

0 comments on commit 9bab839

Please sign in to comment.