Workaround an MSVC v140 bug

This commit is contained in:
Victor Zverovich
2025-02-13 14:12:16 +01:00
parent ed27df5760
commit 0ca42e836e

View File

@ -740,7 +740,7 @@ class basic_specs {
};
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.
char fill_data_[max_fill_size] = {' '};