Skip to content

Commit

Permalink
Some whitespace cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdavis committed Dec 17, 2012
1 parent 24a696a commit 7d5d9fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions std/algorithm.d
Expand Up @@ -920,7 +920,7 @@ unittest
InputRange range;
fill(range, filler);
foreach (value; range.arr)
assert(value == filler);
assert(value == filler);
}
unittest
{
Expand All @@ -947,12 +947,12 @@ unittest
{
int[] a = [1, 2, 3];
immutable(int) b = 0;
static assert(__traits(compiles, a.fill(b)));
static assert(__traits(compiles, a.fill(b)));
}
{
double[] a = [1, 2, 3];
immutable(int) b = 0;
static assert(__traits(compiles, a.fill(b)));
static assert(__traits(compiles, a.fill(b)));
}
}

Expand Down

0 comments on commit 7d5d9fb

Please sign in to comment.