mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 09:53:48 +00:00
One more small piece of determinism
This commit is contained in:
parent
7ecb217d20
commit
c5d0a803e9
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ static const float kEpsilon = 1e-6f;
|
|||
|
||||
TEST(VectorBase, Constructors) {
|
||||
FasTC::VectorBase<float, 3> v3f;
|
||||
v3f[0] = 1.1f; v3f[1] = 1.2f;
|
||||
v3f[0] = 1.1f; v3f[1] = 1.2f; v3f[2] = 1.3;
|
||||
FasTC::VectorBase<double, 1> v1d;
|
||||
v1d[0] = 1.1;
|
||||
FasTC::VectorBase<int, 7> v7i;
|
||||
|
|
Loading…
Reference in a new issue