mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 10:47:35 +02:00
Workaround an MSVC v140 bug
This commit is contained in:
@ -740,7 +740,7 @@ class basic_specs {
|
|||||||
};
|
};
|
||||||
|
|
||||||
unsigned data_ = 1 << fill_size_shift;
|
unsigned data_ = 1 << fill_size_shift;
|
||||||
static_assert(sizeof(data_) * CHAR_BIT >= 18, "");
|
static_assert(sizeof(basic_specs::data_) * CHAR_BIT >= 18, "");
|
||||||
|
|
||||||
// Character (code unit) type is erased to prevent template bloat.
|
// Character (code unit) type is erased to prevent template bloat.
|
||||||
char fill_data_[max_fill_size] = {' '};
|
char fill_data_[max_fill_size] = {' '};
|
||||||
|
Reference in New Issue
Block a user