Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3694

Show
Ignore:
Timestamp:
07/01/08 18:57:20 (2 months ago)
Author:
kris
Message:

added a missing 'else' - thanks to ary manzana!

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/text/convert/Float.d

    r3093 r3694  
    144144                static if (NumType.sizeof is 4)  
    145145                           return ((*cast(uint *)&x) & 0x8000_0000) != 0; 
    146  
     146                else 
    147147                static if (NumType.sizeof is 8)  
    148148                           return ((*cast(ulong *)&x) & 0x8000_0000_0000_0000) != 0;