mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +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_; };
|
bool operator!=(const Iterator& b) const { return ptr_ != b.ptr_; };
|
||||||
|
|
||||||
reference operator*() const { return ptr_; }
|
reference operator*() const { return ptr_; }
|
||||||
pointer operator->() { return &ptr_; }
|
pointer operator->() { return ptr_; }
|
||||||
|
|
||||||
Iterator& operator++()
|
Iterator& operator++()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue