Decode timestamp into UNIX datetime structure
| 345 | |
| 346 | // Decode timestamp into UNIX datetime structure |
| 347 | void NoThrowTimeStamp::decode(struct tm* times, int* fractions) const |
| 348 | { |
| 349 | fb_assert(mValue.timestamp_date != BAD_DATE); |
| 350 | fb_assert(mValue.timestamp_time != BAD_TIME); |
| 351 | |
| 352 | decode_timestamp(mValue, times, fractions); |
| 353 | } |
| 354 | |
| 355 | } // namespace |
no test coverage detected