Made cycle's DollarToken private.

There's no reason for anyone to use it directly, so it's better for it
to be private.
This commit is contained in:
jmdavis 2013-01-12 22:51:35 -08:00
parent c1c7adec0c
commit 9bab8393c3

View file

@ -3828,7 +3828,7 @@ struct Cycle(Range)
return Cycle(this._original.save, this._index); return Cycle(this._original.save, this._index);
} }
static struct DollarToken {} private static struct DollarToken {}
DollarToken opDollar() DollarToken opDollar()
{ {
@ -3928,7 +3928,7 @@ struct Cycle(R)
return this; return this;
} }
static struct DollarToken {} private static struct DollarToken {}
DollarToken opDollar() DollarToken opDollar()
{ {