From f6efeba365988f76f797961f12c57c8328faaa53 Mon Sep 17 00:00:00 2001 From: Shawn Zhong Date: Fri, 13 Jan 2023 03:31:09 -0600 Subject: [PATCH] Add comments --- include/fmt/chrono.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/fmt/chrono.h b/include/fmt/chrono.h index 041aa926..21ddeca9 100644 --- a/include/fmt/chrono.h +++ b/include/fmt/chrono.h @@ -664,10 +664,15 @@ enum class numeric_system { alternative }; +// Glibc extensions for formatting numeric values. enum class pad_type { unspecified, + // Do not pad a numeric result string. none, + // Pad a numeric result string with zeros even if the conversion specifier + // character uses space-padding by default. zero, + // Pad a numeric result string with spaces. space, };