whoops, MSVC 1900 not 1800

This commit is contained in:
Jack Harper
2021-03-09 13:13:16 +00:00
parent 2ea0994507
commit 30172226f9

View File

@@ -24,7 +24,11 @@ extern "C" {
# define strtoull _strtoui64
#endif
#if (_MSC_VER < 1800) && defined(_MINGW)
/*
* strtod works in MSVC 1900 and mingw, use
* the OS version in those and our own otherwise
*/
#if (_MSC_VER < 1900) && !defined(_MINGW)
/*
* epicsStrtod() for systems with broken strtod() routine
*/