diff options
author | unknown <thek@adventure.(none)> | 2007-11-21 20:57:28 +0100 |
---|---|---|
committer | unknown <thek@adventure.(none)> | 2007-11-21 20:57:28 +0100 |
commit | 569c2dcd12735d249e3fc6b7eb41d61c4b565432 (patch) | |
tree | 56a4502f7ac333265e9987599f455992b346a5e2 /sql/sql_lex.h | |
parent | dd98703b482a6d39772129c658f40679778c57b0 (diff) | |
parent | bc54a3736f64fa320475a290903d987b6aea97ea (diff) | |
download | mariadb-git-569c2dcd12735d249e3fc6b7eb41d61c4b565432.tar.gz |
Merge adventure.(none):/home/thek/Development/cpp/bug31153/my51-bug31153
into adventure.(none):/home/thek/Development/cpp/mysql-5.1-runtime
sql/mysqld.cc:
Auto merged
sql/sp_head.cc:
Auto merged
sql/sp_head.h:
Auto merged
sql/sql_base.cc:
Auto merged
sql/sql_lex.h:
Auto merged
sql/sql_prepare.cc:
Auto merged
sql/sql_yacc.yy:
Auto merged
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index da0ff94ec96..cdae7449cc7 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -1834,11 +1834,11 @@ typedef struct st_lex : public Query_tables_list struct st_lex_local: public st_lex { - static void *operator new(size_t size) + static void *operator new(size_t size) throw() { return sql_alloc(size); } - static void *operator new(size_t size, MEM_ROOT *mem_root) + static void *operator new(size_t size, MEM_ROOT *mem_root) throw() { return (void*) alloc_root(mem_root, (uint) size); } |