Commit 95cf1fef authored by zerodefect's avatar zerodefect

Removed compiler warning about unused variable 'kMinExp'.

parent 355c1e94
......@@ -204,7 +204,7 @@ boundaries compute_boundaries(FloatType value)
const bool is_denormal = (E == 0);
const diyfp v = is_denormal
? diyfp(F, 1 - kBias)
? diyfp(F, kMinExp)
: diyfp(F + kHiddenBit, static_cast<int>(E) - kBias);
// Compute the boundaries m- and m+ of the floating-point value
......
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