mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-19 21:22:35 +00:00
srb2::MobjListView: fix arrow operator
This commit is contained in:
parent
df5d1e5fb5
commit
a211ae73fe
1 changed files with 1 additions and 1 deletions
|
|
@ -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++()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue