subsecond_time_c.cc 225 B

12345678
  1. #include "subsecond_time.h"
  2. // Cannot make this inline because of the SubsecondTime dependency
  3. std::ostream &operator<<(std::ostream &os, const subsecond_time_t &time)
  4. {
  5. return (os << static_cast<SubsecondTime>(time));
  6. }