AppFwk : Fix assignment of float value

This commit is contained in:
Magne Sjaastad 2018-02-18 12:34:08 +01:00
parent 88ead1f986
commit 950617af96

View File

@ -80,7 +80,7 @@ TEST(SerializeNumbers, SimpleObjectWithDoubleValues)
//--------------------------------------------------------------------------------------------------
TEST(SerializeNumbers, SimpleObjectWithFloatValues)
{
float valueA = 0.123456789;
float valueA = 0.123456789f;
float valueB = 123456 + valueA;
QString objectAsText;