[bugfix] initialize pointer to list in `ArrayList` iterators
On default construction, the pointer in `ArrayListIterator` and `ArrayListConstIterator` was uninitialized. This caused an assertion to fail upon comparing them, but the code otherwise worked fine. This patch correctly initializes the pointer to `nullptr` to avoid unspecified behavior.
Please register or sign in to comment