1
0
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:
Oleksandr Byelkin
2024-07-20 08:16:24 +02:00
362 changed files with 7658 additions and 3804 deletions

View File

@@ -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++();