From c5d0a803e9ed3a1a1b844e745cc48b86d6f0eac5 Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Wed, 12 Mar 2014 03:31:53 -0400 Subject: [PATCH] One more small piece of determinism --- Base/test/TestVector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Base/test/TestVector.cpp b/Base/test/TestVector.cpp index 902d568..1d594f1 100644 --- a/Base/test/TestVector.cpp +++ b/Base/test/TestVector.cpp @@ -57,7 +57,7 @@ static const float kEpsilon = 1e-6f; TEST(VectorBase, Constructors) { FasTC::VectorBase v3f; - v3f[0] = 1.1f; v3f[1] = 1.2f; + v3f[0] = 1.1f; v3f[1] = 1.2f; v3f[2] = 1.3; FasTC::VectorBase v1d; v1d[0] = 1.1; FasTC::VectorBase v7i;