Fixed double initialization of Float32

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2022-01-31 19:20:04 +02:00
parent 9772bf6c43
commit 0c35487ab3

View File

@@ -83,10 +83,10 @@ static const struct UInt64Data UInt64 =
static const struct Float32Data Float32 =
{
.MIN_POS = 1.175494351e-38,
.MIN = -3.402823466e+38,
.MAX = 3.402823466e+38,
.EPS = 1.192093e-07
.MIN_POS = 1.175494351e-38f,
.MIN = -3.402823466e+38f,
.MAX = 3.402823466e+38f,
.EPS = 1.192093e-07f
};
static const struct Float64Data Float64 =