mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '10.6' into 10.11
This commit is contained in:
@@ -537,10 +537,9 @@ public:
|
||||
class Iterator;
|
||||
using value_type= T;
|
||||
using iterator= Iterator;
|
||||
using const_iterator= const Iterator;
|
||||
|
||||
Iterator begin() const { return Iterator(first); }
|
||||
Iterator end() const { return Iterator(); }
|
||||
iterator begin() const { return iterator(first); }
|
||||
iterator end() const { return iterator(); }
|
||||
|
||||
class Iterator
|
||||
{
|
||||
@@ -561,7 +560,7 @@ public:
|
||||
return *this;
|
||||
}
|
||||
|
||||
T operator++(int)
|
||||
Iterator operator++(int)
|
||||
{
|
||||
Iterator tmp(*this);
|
||||
operator++();
|
||||
|
Reference in New Issue
Block a user