mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-04 17:26:42 +00:00
Fix MSVC build
This commit is contained in:
parent
98c1f76f24
commit
5c76d107cb
2
format.h
2
format.h
@ -2773,7 +2773,7 @@ void BasicWriter<Char>::write_double(
|
||||
spec.width() > static_cast<unsigned>(n)) {
|
||||
width = spec.width();
|
||||
CharPtr p = grow_buffer(width);
|
||||
std::memmove(p + (width - n) / 2, p, n * sizeof(Char));
|
||||
std::memmove(get(p) + (width - n) / 2, get(p), n * sizeof(Char));
|
||||
fill_padding(p, spec.width(), n, fill);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user