dtoa-benchmark icon indicating copy to clipboard operation
dtoa-benchmark copied to clipboard

A few errors in VS2010

Open 01joy opened this issue 9 years ago • 0 comments

I built your project step by step, there are a lot of errors in vs2010

  1. No isnan and isinf function, in windows, you should change they to _isnan and !_finite
  2. No #include <stdbool.h> header, i just delete it
  3. diy_fp_t r = {.f = x.f - y.f, .e = x.e}; in diy_fp.h, i change it to r.f=x.f-y.f;r.e=x.e also error, why?

Please help.

01joy avatar Mar 06 '15 01:03 01joy