mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
Fix a narrowing warning
This commit is contained in:
parent
3651b7fca6
commit
a24005d5fd
@ -2295,7 +2295,7 @@ class basic_writer {
|
||||
void write_int(unsigned num_digits, string_view prefix,
|
||||
const Spec &spec, F f) {
|
||||
std::size_t size = prefix.size() + num_digits;
|
||||
char_type fill = spec.fill();
|
||||
char_type fill = static_cast<char_type>(spec.fill());
|
||||
std::size_t padding = 0;
|
||||
if (spec.align() == ALIGN_NUMERIC) {
|
||||
if (spec.width() > size) {
|
||||
|
Loading…
Reference in New Issue
Block a user