Changeset 3694
- Timestamp:
- 07/01/08 18:57:20 (2 months ago)
- Files:
-
- trunk/tango/text/convert/Float.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/text/convert/Float.d
r3093 r3694 144 144 static if (NumType.sizeof is 4) 145 145 return ((*cast(uint *)&x) & 0x8000_0000) != 0; 146 146 else 147 147 static if (NumType.sizeof is 8) 148 148 return ((*cast(ulong *)&x) & 0x8000_0000_0000_0000) != 0;












