From 72b347bc6d25c7527e9b4061e9a9c068a3cc0913 Mon Sep 17 00:00:00 2001 From: Bo Thorsen Date: Wed, 21 Apr 2010 02:25:59 +0200 Subject: Fix a bunch of Windows warnings --- sql/sql_repl.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sql/sql_repl.cc') diff --git a/sql/sql_repl.cc b/sql/sql_repl.cc index ae995ea5ed3..b3d90028532 100644 --- a/sql/sql_repl.cc +++ b/sql/sql_repl.cc @@ -1835,6 +1835,11 @@ int init_replication_sys_vars() return 0; } +#elif defined(__WIN__) + +// Remove linker warning 4221 about empty file +namespace { char dummy; }; + #endif /* HAVE_REPLICATION */ -- cgit v1.2.1