Changeset 35584 in vbox
- Timestamp:
- Jan 17, 2011 2:17:50 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r35525 r35584 519 519 /** The exponent (offseted by 16383). */ 520 520 RT_GCC_EXTENSION uint16_t uExponent : 15; 521 /** The fraction. */522 uint64_t u64 Fraction;521 /** The mantissa. */ 522 uint64_t u64Mantissa; 523 523 # else 524 /** The fraction. */525 uint64_t u64 Fraction;524 /** The mantissa. */ 525 uint64_t u64Mantissa; 526 526 /** The exponent (offseted by 16383). */ 527 527 RT_GCC_EXTENSION uint16_t uExponent : 15; … … 566 566 /** The exponent (offseted by 16383). */ 567 567 RT_GCC_EXTENSION uint16_t uExponent : 15; 568 /** The fraction. */568 /** The mantissa. */ 569 569 uint64_t u64Mantissa; 570 570 #else 571 /** The fraction. */571 /** The mantissa. */ 572 572 uint64_t u64Mantissa; 573 573 /** The exponent (offseted by 16383). */
Note:
See TracChangeset
for help on using the changeset viewer.