Align digits table

This commit is contained in:
Victor Zverovich
2024-07-24 18:43:37 -07:00
parent 0c02813791
commit ffdc3fdbd9
2 changed files with 41 additions and 32 deletions
+1 -1
View File
@@ -1481,7 +1481,7 @@ class tm_writer {
char buf[10];
size_t offset = 0;
if (year >= 0 && year < 10000) {
copy2(buf, digits2(static_cast<size_t>(year / 100)));
write2digits(buf, static_cast<size_t>(year / 100));
} else {
offset = 4;
write_year_extended(year);