From 5c76d107cbaf5e851bd66b6c563e4fc7c90be7ad Mon Sep 17 00:00:00 2001 From: vitaut Date: Sun, 6 Dec 2015 14:17:34 -0800 Subject: [PATCH] Fix MSVC build --- format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.h b/format.h index 98190162..a98a1660 100644 --- a/format.h +++ b/format.h @@ -2773,7 +2773,7 @@ void BasicWriter::write_double( spec.width() > static_cast(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; }