Changeset 2171
- Timestamp:
- 05/07/07 03:39:28 (2 years ago)
- Files:
-
- trunk/tango/util/time/Clock.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/util/time/Clock.d
r2166 r2171 195 195 static Date toDate (Time time) 196 196 { 197 Date date = void; 197 198 auto timeval = convert (time); 198 199 date.ms = timeval.tv_usec / 1000; … … 208 209 date.sec = t.tm_sec; 209 210 date.dow = t.tm_wday; 210 return Date;211 return date; 211 212 } 212 213












