Prevent the compiler from deciding whether or not the float is big enough to overflow or not...

This commit is contained in:
Pavel Krajcevski 2014-03-12 03:02:17 -04:00
parent e96cecc13a
commit 88821fbbb0

View File

@ -118,7 +118,7 @@ TEST(VectorBase, PointerConversion) {
TEST(VectorBase, CastVector) {
FasTC::VectorBase<float, 3> v3f;
v3f[0] = 100000000000.0f;
v3f[0] = 1000000.0f;
v3f[1] = -2.0f;
v3f[2] = -1.1f;