mirror of
https://github.com/MariaDB/server.git
synced 2026-05-04 22:25:32 +02:00
5.3->5.5 merge
This commit is contained in:
commit
213f1c76a0
52 changed files with 1825 additions and 294 deletions
|
|
@ -287,13 +287,15 @@ public:
|
|||
if (node == &end_of_list)
|
||||
return;
|
||||
}
|
||||
*prev= *last;
|
||||
*prev= &end_of_list;
|
||||
last= prev;
|
||||
}
|
||||
inline void prepand(base_list *list)
|
||||
{
|
||||
if (!list->is_empty())
|
||||
{
|
||||
if (is_empty())
|
||||
last= list->last;
|
||||
*list->last= first;
|
||||
first= list->first;
|
||||
elements+= list->elements;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue