mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-25 15:21:54 +00:00
Fix a warning
This commit is contained in:
parent
1788883262
commit
9c865560fd
@ -889,7 +889,8 @@ class ThousandsSep {
|
|||||||
if (++digit_index_ % 3 != 0)
|
if (++digit_index_ % 3 != 0)
|
||||||
return;
|
return;
|
||||||
buffer -= sep_.size();
|
buffer -= sep_.size();
|
||||||
std::uninitialized_copy(sep_.data(), sep_.data() + sep_.size(), buffer);
|
std::uninitialized_copy(sep_.data(), sep_.data() + sep_.size(),
|
||||||
|
internal::make_ptr(buffer, sep_.size()));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user