srb2::MobjListView: fix arrow operator

This commit is contained in:
James R 2023-12-03 09:53:08 -08:00
parent df5d1e5fb5
commit a211ae73fe

View file

@ -39,7 +39,7 @@ struct MobjListView
bool operator!=(const Iterator& b) const { return ptr_ != b.ptr_; };
reference operator*() const { return ptr_; }
pointer operator->() { return &ptr_; }
pointer operator->() { return ptr_; }
Iterator& operator++()
{