mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
a fix for an error?
This commit is contained in:
parent
f0f6dc88b1
commit
919953b661
@ -127,7 +127,7 @@ public:
|
||||
}
|
||||
|
||||
// constructor based on other iterator
|
||||
iterator(iterator &other)
|
||||
iterator(const iterator &other)
|
||||
{
|
||||
m_pList = other.m_pList;
|
||||
m_CurPos = other.m_CurPos;
|
||||
@ -161,7 +161,7 @@ public:
|
||||
inline iterator operator++(int)
|
||||
{
|
||||
iterator tmp(*this);
|
||||
m_CurPos = m_CurPos)->next;
|
||||
m_CurPos = m_CurPos->next;
|
||||
return tmp;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user