Fix MSC 2-digit-exponent in cvtFastTest.c

This commit is contained in:
Andrew Johnson
2017-05-06 00:41:52 -05:00
parent 9621ff1552
commit fd583ac594
+4 -1
View File
@@ -46,8 +46,11 @@ MAIN(cvtFastTest)
epicsFloat32 val_Float;
epicsFloat64 val_Double;
#if defined(WIN32) && (!defined(_MINGW) || __MSVCRT_VERSION__ >= 0x0800)
#ifdef _WIN32
#if (defined(_MSC_VER) && _MSC_VER < 1900) || \
(defined(_MINGW) && defined(_TWO_DIGIT_EXPONENT))
_set_output_format(_TWO_DIGIT_EXPONENT);
#endif
#endif
testPlan(1062);