Fixed #12933: added cast to silence clang -Wcomma warning

This commit is contained in:
Sean McBride 2018-10-25 13:27:17 -04:00
parent eb981cc7d7
commit 828091cfbb

View File

@ -814,7 +814,7 @@ protected:
out.u = t + (1 << 23);
out.u = (e >= 0x7c00 ? t + 0x38000000 :
e == 0 ? (out.f -= 6.103515625e-05f, out.u) : t) | sign;
e == 0 ? (static_cast<void>(out.f -= 6.103515625e-05f), out.u) : t) | sign;
return out.f;
#endif
}