Commit a71b76bb authored by Max Kellermann's avatar Max Kellermann

test/test_pcm_format: another workaround for -Wdouble-promotion

parent c1429500
......@@ -125,8 +125,8 @@ TEST(PcmTest, FormatFloat32)
EXPECT_EQ(N, f.size);
for (size_t i = 0; i != f.size; ++i) {
EXPECT_GE(f[i], -1.);
EXPECT_LE(f[i], 1.);
EXPECT_GE(f[i], -1.f);
EXPECT_LE(f[i], 1.f);
}
auto d = pcm_convert_to_32(buffer2,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment