CResourceIterator: Remove unnecessary inline specifiers
This commit is contained in:
parent
0096b28294
commit
e2209106fb
|
@ -36,33 +36,33 @@ public:
|
||||||
return mpCurEntry;
|
return mpCurEntry;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool DoneIterating() const
|
bool DoneIterating() const
|
||||||
{
|
{
|
||||||
return mpCurEntry == nullptr;
|
return mpCurEntry == nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline operator bool() const
|
explicit operator bool() const
|
||||||
{
|
{
|
||||||
return !DoneIterating();
|
return !DoneIterating();
|
||||||
}
|
}
|
||||||
|
|
||||||
inline CResourceEntry* operator*() const
|
CResourceEntry* operator*() const
|
||||||
{
|
{
|
||||||
return mpCurEntry;
|
return mpCurEntry;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline CResourceEntry* operator->() const
|
CResourceEntry* operator->() const
|
||||||
{
|
{
|
||||||
return mpCurEntry;
|
return mpCurEntry;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline CResourceIterator& operator++()
|
CResourceIterator& operator++()
|
||||||
{
|
{
|
||||||
Next();
|
Next();
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline CResourceIterator operator++(int)
|
CResourceIterator operator++(int)
|
||||||
{
|
{
|
||||||
CResourceIterator Copy = *this;
|
CResourceIterator Copy = *this;
|
||||||
Next();
|
Next();
|
||||||
|
|
Loading…
Reference in New Issue