Ignore:
Timestamp:
Apr 13, 2018, 8:44:35 AM (6 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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:
bd5cf7c
Parents:
10a97ad
Message:

adjust size of "time"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/time_t.h

    r10a97ad r07b8001  
    1010// Created On       : Tue Apr 10 14:42:03 2018
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Apr 10 16:32:04 2018
    13 // Update Count     : 3
     12// Last Modified On : Fri Apr 13 07:51:47 2018
     13// Update Count     : 6
    1414//
    1515
     
    2424
    2525static inline void ?{}( Duration & dur ) with( dur ) { tv = 0; }
    26 static inline void ?{}( Duration & dur, Duration d ) with( dur ) { tv = d.tv; }
    2726static inline void ?{}( Duration & dur, zero_t ) with( dur ) { tv = 0; }
    2827
     
    3433}; // Time
    3534
    36 static inline void ?{}( Time & t ) with( t ) { tv = 0; } // fast
    37 void ?{}( Time & time, int year, int month = 0, int day = 0, int hour = 0, int min = 0, int sec = 0, int nsec = 0 ); // slow
    38 static inline void ?{}( Time & t, zero_t ) { t.tv = 0; }
     35static inline void ?{}( Time & time ) with( time ) { tv = 0; }
     36static inline void ?{}( Time & time, zero_t ) with( time ) { tv = 0; }
    3937
    4038// Local Variables: //
Note: See TracChangeset for help on using the changeset viewer.