1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Mac fixes

This commit is contained in:
Brian Fiete 2020-04-16 00:14:25 -07:00
parent c84da66758
commit 8709c92f22
4 changed files with 23 additions and 2 deletions

View file

@ -113,6 +113,16 @@ public:
{
return mPtr < val2.mPtr;
}
bool operator>(const iterator& val2)
{
return mPtr > val2.mPtr;
}
bool operator>=(const iterator& val2)
{
return mPtr >= val2.mPtr;
}
};
struct const_iterator