dtoa-benchmark
dtoa-benchmark copied to clipboard
A few errors in VS2010
I built your project step by step, there are a lot of errors in vs2010
- No
isnan
andisinf
function, in windows, you should change they to_isnan
and!_finite
- No
#include <stdbool.h>
header, i just delete it -
diy_fp_t r = {.f = x.f - y.f, .e = x.e};
in diy_fp.h, i change it tor.f=x.f-y.f;r.e=x.e
also error, why?
Please help.