Merge pull request #12952 from seanm:fix12933

pull/12980/head
Alexander Alekhin 6 years ago
commit e0c888acf7
  1. 2
      modules/core/include/opencv2/core/cvdef.h

@ -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
}

Loading…
Cancel
Save