Changes in libcfa/src/time_t.hfa [ffe2fad:73abe95]
- File:
-
- 1 edited
-
libcfa/src/time_t.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/time_t.hfa
rffe2fad r73abe95 24 24 25 25 static inline void ?{}( Duration & dur ) with( dur ) { tv = 0; } 26 static inline void ?{}( Duration & dur, __attribute__((unused))zero_t ) with( dur ) { tv = 0; }26 static inline void ?{}( Duration & dur, zero_t ) with( dur ) { tv = 0; } 27 27 28 28 … … 34 34 35 35 static inline void ?{}( Time & time ) with( time ) { tv = 0; } 36 static inline void ?{}( Time & time, __attribute__((unused))zero_t ) with( time ) { tv = 0; }36 static inline void ?{}( Time & time, zero_t ) with( time ) { tv = 0; } 37 37 38 38 // Local Variables: //
Note:
See TracChangeset
for help on using the changeset viewer.