diff options
author | Igor Babaev <igor@askmonty.org> | 2010-09-11 12:18:58 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2010-09-11 12:18:58 -0700 |
commit | 3a61fbe972f96a8eed3ed9d51c2c3594860bbc53 (patch) | |
tree | 9b02396fd98746a1e73702bcc0d46436ca1a562f /sql/sql_list.h | |
parent | 617f3094dffeef7e12512541964d0915fbb5d3f9 (diff) | |
download | mariadb-git-3a61fbe972f96a8eed3ed9d51c2c3594860bbc53.tar.gz |
WL#24: post review fixes.
Diffstat (limited to 'sql/sql_list.h')
-rw-r--r-- | sql/sql_list.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sql/sql_list.h b/sql/sql_list.h index 6a568c2dfd7..69798079a0f 100644 --- a/sql/sql_list.h +++ b/sql/sql_list.h @@ -235,14 +235,11 @@ public: { if (!list->is_empty()) { -#if 0 -#else if (is_empty()) { *this= *list; return; } -#endif *last= list->first; last= list->last; elements+= list->elements; |