diff options
author | monty@mysql.com <> | 2005-02-10 15:41:51 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2005-02-10 15:41:51 +0200 |
commit | ccb2f3381bb8732ecb684978fe62af8dc1cd1c38 (patch) | |
tree | 7d42cc92f921a6a9007987c503f67b03a02a32ac /sql/sql_list.h | |
parent | b9e502a99a9b3259106a1621f0e9469c146025b4 (diff) | |
download | mariadb-git-ccb2f3381bb8732ecb684978fe62af8dc1cd1c38.tar.gz |
Things missing in last changset
After merge fixes
Don't give duplicate warnings for some ::store() functions
Diffstat (limited to 'sql/sql_list.h')
-rw-r--r-- | sql/sql_list.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sql/sql_list.h b/sql/sql_list.h index 6317d215399..85da553f64a 100644 --- a/sql/sql_list.h +++ b/sql/sql_list.h @@ -158,15 +158,6 @@ public: last= &first; return tmp->info; } - inline void concat(base_list *list) - { - if (!list->is_empty()) - { - *last= list->first; - last= list->last; - elements+= list->elements; - } - } inline void disjoin(base_list *list) { list_node **prev= &first; |