Address compiler and test failures

This commit is contained in:
Tyler Wilding
2020-09-03 23:56:35 -04:00
parent 39eb3a90ea
commit dcde103c26
14 changed files with 47 additions and 57 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ TEST(Kernel, ftoa) {
ftoa(buffer, 1., 1, ' ', 1, 0);
EXPECT_EQ("1.0", std::string(buffer));
float zero = 0.0f;
float zero = 0.0f;
ftoa(buffer, 0.f / zero, 1, ' ', 4, 0);
EXPECT_EQ("NaN", std::string(buffer));