Changeset deaef5b
- Timestamp:
- Apr 13, 2018, 3:49:55 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, with_gc
- Children:
- 9ca94af
- Parents:
- e93f1d2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/time
re93f1d2 rdeaef5b 10 10 // Created On : Wed Mar 14 23:18:57 2018 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Apr 13 07:51:52201813 // Update Count : 63 412 // Last Modified On : Fri Apr 13 11:16:50 2018 13 // Update Count : 635 14 14 // 15 15 … … 29 29 30 30 //######################### Duration ######################### 31 32 static inline void ?{}( Duration & dur, Duration d ) with( dur ) { tv = d.tv; }33 31 34 32 static inline Duration ?=?( Duration & dur, zero_t ) { return dur{ 0 }; } … … 137 135 //######################### Time ######################### 138 136 139 static inline void ?{}( Time & time, Time t ) with( time ) { tv = t.tv; }140 137 void ?{}( Time & time, int year, int month = 0, int day = 0, int hour = 0, int min = 0, int sec = 0, int nsec = 0 ); 141 138 static inline void ?{}( Time & time, timeval t ) with( time ) { tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_usec * 1000; }
Note: See TracChangeset
for help on using the changeset viewer.