Update changes to modify [0][0] to [0, 0]

Addressing comments to change [0][0] to [0, 0]
This commit is contained in:
jmh530 2016-07-26 18:41:56 -04:00 committed by GitHub
parent 1ab23fa70b
commit f21cf84d99

View file

@ -106,7 +106,7 @@ template pack(K...)
auto b = a.pack!(2);
assert(b.shape == [3, 4]);
assert(b[0][0].shape == [5, 6]);
assert(b[0, 0].shape == [5, 6]);
assert(a == b);