mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 10:34:02 +00:00
Fix test iteration constant
This commit is contained in:
parent
f1b5bc3831
commit
b1ef548a7c
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ TEST(VectorBase, Constructors) {
|
|||
for(int i = 0; i < 7; i++)
|
||||
v7i[i] = -i;
|
||||
FasTC::VectorBase<unsigned, 16> v16u;
|
||||
for(int i = 0; i < 7; i++)
|
||||
for(int i = 0; i < 16; i++)
|
||||
v16u[i] = i;
|
||||
|
||||
#define TEST_VECTOR_COPY_CONS(v, t, n) \
|
||||
|
|
Loading…
Reference in a new issue