Changeset 96126 in vbox for trunk/src/VBox/Runtime/common/math/lroundl.cpp
- Timestamp:
- Aug 8, 2022 11:17:09 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152928
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/math/lroundl.cpp
r96119 r96126 43 43 if (lrd >= (long double)LONG_MIN && lrd <= (long double)LONG_MAX) 44 44 return (long)lrd; 45 / / @todo RT_NOCRT(feraiseexcept)(FE_INVALID);45 /** @todo RT_NOCRT(feraiseexcept)(FE_INVALID); */ 46 46 return lrd > 0 ? LONG_MAX : LONG_MIN; 47 47 } 48 / / @todo RT_NOCRT(feraiseexcept)(FE_INVALID);48 /** @todo RT_NOCRT(feraiseexcept)(FE_INVALID); */ 49 49 return LONG_MAX; 50 50 }
Note:
See TracChangeset
for help on using the changeset viewer.