summaryrefslogtreecommitdiff
path: root/sql/sql_list.h
diff options
context:
space:
mode:
authormonty@mysql.com/narttu.mysql.fi <>2007-02-24 04:22:34 +0200
committermonty@mysql.com/narttu.mysql.fi <>2007-02-24 04:22:34 +0200
commit3d34c6f9575dc21d5dd7f9f7b8b0e205fd47df5f (patch)
tree19221b394db54a73f75d403d03edca4ea37ff5b3 /sql/sql_list.h
parent520d1b414455668e32e46e7b217257ebcb766bb2 (diff)
downloadmariadb-git-3d34c6f9575dc21d5dd7f9f7b8b0e205fd47df5f.tar.gz
Fixed windows compilation problems
Diffstat (limited to 'sql/sql_list.h')
-rw-r--r--sql/sql_list.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/sql_list.h b/sql/sql_list.h
index d16fbaf2e50..af30cbe0d6a 100644
--- a/sql/sql_list.h
+++ b/sql/sql_list.h
@@ -38,6 +38,8 @@ public:
static void operator delete(void *ptr, size_t size) { TRASH(ptr, size); }
static void operator delete(void *ptr, MEM_ROOT *mem_root)
{ /* never called */ }
+ static void operator delete[](void *ptr, MEM_ROOT *mem_root)
+ { /* never called */ }
static void operator delete[](void *ptr, size_t size) { TRASH(ptr, size); }
#ifdef HAVE_purify
bool dummy;