Skip to content

Commit

Permalink
Make internal attributes private
Browse files Browse the repository at this point in the history
  • Loading branch information
monarchdodra committed Jan 5, 2014
1 parent 933fc4c commit 9df6b50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions std/range.d
Expand Up @@ -4271,8 +4271,8 @@ struct Cycle(R)
{
static if (isRandomAccessRange!R && hasLength!R)
{
R _original;
size_t _index;
private R _original;
private size_t _index;

this(R input, size_t index = 0)
{
Expand Down Expand Up @@ -4360,8 +4360,8 @@ struct Cycle(R)
}
else
{
R _original;
R _current;
private R _original;
private R _current;

this(R input)
{
Expand Down

0 comments on commit 9df6b50

Please sign in to comment.