[libcxx] Change the type of __size to correspond

__size was declared as unsigned which was compatible with
This commit is contained in:
Brian Cain 2021-11-10 09:26:10 -08:00
parent c9dfe322ee
commit 2d0aede515
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ private:
__out_it = _VSTD::copy(__begin, __first, _VSTD::move(__out_it));
this->__alignment = _Flags::_Alignment::__right;
this->__fill = _CharT('0');
unsigned __size = __first - __begin;
uint32_t __size = __first - __begin;
this->__width -= _VSTD::min(__size, this->__width);
}