STL icon indicating copy to clipboard operation
STL copied to clipboard

`<chrono>`: `[time.format]` may assume that strings are encoded in the active code page

Open mnatsuhara opened this issue 4 years ago • 1 comments

We should investigate whether similar changes to #1834 are necessary for <chrono>'s integration with std::format.

mnatsuhara avatar May 04 '21 16:05 mnatsuhara

A chrono conversion specifier must start with % (byte 0x25), and % isn't used as a non-lead-byte in any supported multibyte encoding (unlike { and }). So I think no changes are needed.

cpplearner avatar Oct 21 '23 07:10 cpplearner