mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
`auto count = 0;` will declare `count` as a `signed int`. We don't want that since `count` is used to count the occurence of an element in an `AK::Vector` that can have up to `SIZE_MAX` elements; `SIZE_MAX` can overflow a `signed int` more than 4 billion times.
28 KiB
28 KiB