Changeset 96222 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- Aug 15, 2022 1:53:49 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/strtofloat.cpp
r96194 r96222 685 685 #if defined(RT_COMPILER_WITH_128BIT_LONG_DOUBLE) 686 686 if (iRetType == RET_TYPE_LONG_DOUBLE) 687 {688 687 uHiNum &= g_fNanMasks[RET_TYPE_LONG_DOUBLE]; 689 if (!uLoNum && !uHiNum)690 uLoNum = 1; /* must not be zero, or it'll turn into an infinity */691 }692 688 else 693 689 #endif … … 695 691 uHiNum = 0; 696 692 uLoNum &= g_fNanMasks[iRetType]; 697 if (!uLoNum)698 uLoNum = 1; /* must not be zero, or it'll turn into an infinity */699 }693 } 694 if (!uLoNum && !uHiNum && !fQuiet) 695 uLoNum = 1; /* must not be zero, or it'll turn into an infinity */ 700 696 701 697 /*
Note:
See TracChangeset
for help on using the changeset viewer.