1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-10 06:48:05 +00:00

VS2010 build: Fixed compatibility with non-MSVS compilers.

This commit is contained in:
unknown 2014-02-13 10:36:35 +01:00
parent 861307becc
commit 3f12e96292

View File

@ -74,10 +74,10 @@ char *opt_set_floatval(const char *arg, float *f)
char *endp;
errno = 0;
#if (_MSC_VER >= 1800)
*f = strtof(arg, &endp);
#else
#if defined (_MSC_VER) && (_MSC_VER < 1800)
*f = strtod(arg, &endp);
#else
*f = strtof(arg, &endp);
#endif
if (*endp || !arg[0])
return arg_bad("'%s' is not a number", arg);