Skip to content

Commit

Permalink
Fixing white space
Browse files Browse the repository at this point in the history
Trying to fix white space so that Travis CI passes.
  • Loading branch information
jmh530 authored Jul 27, 2016
1 parent 623d5b1 commit 7ebce43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/experimental/ndslice/selection.d
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ template pack(K...)
auto a = r.sliced(3, 4, 5, 6);
auto b = a.pack!2;

assert(b.shape == [3, 4]);
assert(b[0, 0].shape == [5, 6]);
assert(b.shape == [3, 4]);
assert(b[0, 0].shape == [5, 6]);
assert(a == b);
static assert(is(typeof(b) == typeof(a.pack!2)));
static assert(is(typeof(b) == Slice!(2, Slice!(3, typeof(r)))));
Expand Down

0 comments on commit 7ebce43

Please sign in to comment.