Commit 237f7ae7 authored by unknown's avatar unknown

missing DBUG_VOID_RETURN


BUILD/SETUP.sh:
  no need to force stack direction anymore
parent 58237d22
...@@ -171,10 +171,10 @@ max_configs="$SSL_LIBRARY --with-plugins=max --with-embedded-server" ...@@ -171,10 +171,10 @@ max_configs="$SSL_LIBRARY --with-plugins=max --with-embedded-server"
# CPU and platform specific compilation flags. # CPU and platform specific compilation flags.
# #
alpha_cflags="$check_cpu_cflags -Wa,-m$cpu_flag" alpha_cflags="$check_cpu_cflags -Wa,-m$cpu_flag"
amd64_cflags="$check_cpu_cflags -DSTACK_DIRECTION=-1" amd64_cflags="$check_cpu_cflags"
amd64_cxxflags="" # If dropping '--with-big-tables', add here "-DBIG_TABLES" amd64_cxxflags="" # If dropping '--with-big-tables', add here "-DBIG_TABLES"
pentium_cflags="$check_cpu_cflags -DSTACK_DIRECTION=-1" pentium_cflags="$check_cpu_cflags"
pentium64_cflags="$check_cpu_cflags -m64 -DSTACK_DIRECTION=-1" pentium64_cflags="$check_cpu_cflags -m64"
ppc_cflags="$check_cpu_cflags" ppc_cflags="$check_cpu_cflags"
sparc_cflags="" sparc_cflags=""
......
...@@ -351,6 +351,7 @@ Rpl_filter::add_do_db(const char* table_spec) ...@@ -351,6 +351,7 @@ Rpl_filter::add_do_db(const char* table_spec)
DBUG_ENTER("Rpl_filter::add_do_db"); DBUG_ENTER("Rpl_filter::add_do_db");
i_string *db = new i_string(table_spec); i_string *db = new i_string(table_spec);
do_db.push_back(db); do_db.push_back(db);
DBUG_VOID_RETURN;
} }
...@@ -360,6 +361,7 @@ Rpl_filter::add_ignore_db(const char* table_spec) ...@@ -360,6 +361,7 @@ Rpl_filter::add_ignore_db(const char* table_spec)
DBUG_ENTER("Rpl_filter::add_ignore_db"); DBUG_ENTER("Rpl_filter::add_ignore_db");
i_string *db = new i_string(table_spec); i_string *db = new i_string(table_spec);
ignore_db.push_back(db); ignore_db.push_back(db);
DBUG_VOID_RETURN;
} }
extern "C" uchar *get_table_key(const uchar *, size_t *, my_bool); extern "C" uchar *get_table_key(const uchar *, size_t *, my_bool);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment