Commit 828091cf authored by Sean McBride's avatar Sean McBride

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

parent eb981cc7
......@@ -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
}
......
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