BAN: Add support for string format padding

This commit is contained in:
2026-02-23 16:06:48 +02:00
parent 0964c9f928
commit 1fc2e43881
2 changed files with 5 additions and 4 deletions
+2 -3
View File
@@ -352,10 +352,9 @@ namespace BAN::Formatter
{
template<typename F>
void print_argument(F putc, const String& string, const ValueFormat&)
void print_argument(F putc, const String& string, const ValueFormat& format)
{
for (String::size_type i = 0; i < string.size(); i++)
putc(string[i]);
print_argument(putc, string.sv(), format);
}
}