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

Changeset 2171

Show
Ignore:
Timestamp:
05/07/07 03:39:28 (2 years ago)
Author:
kris
Message:

whoopsie ... dropped the linux build

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/util/time/Clock.d

    r2166 r2171  
    195195                static Date toDate (Time time) 
    196196                { 
     197                        Date date = void; 
    197198                        auto timeval = convert (time); 
    198199                        date.ms = timeval.tv_usec / 1000; 
     
    208209                        date.sec   = t.tm_sec; 
    209210                        date.dow   = t.tm_wday; 
    210                         return Date; 
     211                        return date; 
    211212                } 
    212213