mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-04 17:26:42 +00:00
Fix compilation on pre C++11.
This commit is contained in:
parent
100149eb58
commit
26d2ae6281
@ -517,10 +517,12 @@ void Formatter::DoFormat() {
|
||||
char *out = 0;
|
||||
if (spec.width > 1) {
|
||||
out = GrowBuffer(spec.width);
|
||||
if (spec.align == ALIGN_RIGHT)
|
||||
out = std::fill_n(out, spec.width - 1, spec.fill);
|
||||
else
|
||||
if (spec.align == ALIGN_RIGHT) {
|
||||
std::fill_n(out, spec.width - 1, spec.fill);
|
||||
out += spec.width - 1;
|
||||
} else {
|
||||
std::fill_n(out + 1, spec.width - 1, spec.fill);
|
||||
}
|
||||
} else {
|
||||
out = GrowBuffer(1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user