1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-22 04:24:19 +00:00

VS2010 build: Fixed compatibility with non-MSVS compilers.

This commit is contained in:
unknown 2014-02-13 10:36:35 +01:00 committed by Noel Maersk
parent ee70f9f2af
commit dab737c6fe

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);