mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2024-11-24 04:25:41 +01:00
One more small piece of determinism
This commit is contained in:
parent
7ecb217d20
commit
c5d0a803e9
@ -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 New Issue
Block a user