Add comments

This commit is contained in:
Shawn Zhong 2023-01-13 03:31:09 -06:00
parent dda4620997
commit f6efeba365

View File

@ -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,
};