| 424 | |
| 425 | |
| 426 | void Encoder::writeDateString(int64_t timestamp, bool asUTC) { |
| 427 | char str[kFormattedISO8601DateMaxSize]; |
| 428 | writeString(FormatISO8601Date(str, timestamp, asUTC)); |
| 429 | } |
| 430 | |
| 431 | |
| 432 | #pragma mark - WRITING VALUES: |
nothing calls this directly
no test coverage detected