[libcxx] Change the type of __size to correspond

__size was declared as unsigned which was compatible with

GitOrigin-RevId: 2d0aede515e8d7ce141da9708c7e7129d6e24241
diff --git a/include/__format/formatter_integral.h b/include/__format/formatter_integral.h
index 14b4e3a..6a232f2 100644
--- a/include/__format/formatter_integral.h
+++ b/include/__format/formatter_integral.h
@@ -404,7 +404,7 @@
       __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);
     }