mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-5852 Fix for Visual Studio 2003
X-SVN-Rev: 22425
This commit is contained in:
parent
0d851cdb94
commit
2aca9a194a
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ NumberFormatRoundTripTest::test(NumberFormat *fmt)
|
|||
#endif
|
||||
}
|
||||
|
||||
#if _MSC_VER >= 1400 || defined __alpha__ || defined U_OSF
|
||||
#if (defined(_MSC_VER) && _MSC_VER < 1400) || defined(__alpha__) || defined(U_OSF)
|
||||
// These machines and compilers don't fully support denormalized doubles,
|
||||
test(fmt, randomDouble(1e-292));
|
||||
test(fmt, randomDouble(1e-100));
|
||||
|
|
Loading…
Add table
Reference in a new issue