summaryrefslogtreecommitdiff
path: root/server-tools/instance-manager/options.h
diff options
context:
space:
mode:
authorunknown <petr@mysql.com>2005-10-19 00:31:00 +0400
committerunknown <petr@mysql.com>2005-10-19 00:31:00 +0400
commit8b9e392edfed1ab68111c2e1fe4bc80c9a5c48fa (patch)
tree057ba1ed07844bca497be93f48e2a0a866cbc0ac /server-tools/instance-manager/options.h
parent34a2fa26f9c0f9b007e102568489d7881b71a656 (diff)
downloadmariadb-git-8b9e392edfed1ab68111c2e1fe4bc80c9a5c48fa.tar.gz
fix compilation failure on serg's box: we shouldn't
use USE_PRAGMA_INTERFACE before include of my_global.h, where it is defined server-tools/instance-manager/command.h: don't use USE_PRAGMA_INTERFACE before my_global.h, where it is defined server-tools/instance-manager/listener.h: don't use USE_PRAGMA_INTERFACE before my_global.h, where it is defined server-tools/instance-manager/mysql_connection.h: don't use USE_PRAGMA_INTERFACE before my_global.h, where it is defined server-tools/instance-manager/options.h: don't use USE_PRAGMA_INTERFACE before my_global.h, where it is defined server-tools/instance-manager/thread_registry.cc: fix register server-tools/instance-manager/thread_registry.h: don't use USE_PRAGMA_INTERFACE before my_global.h, where it is defined server-tools/instance-manager/user_map.h: don't use USE_PRAGMA_INTERFACE before my_global.h, where it is defined
Diffstat (limited to 'server-tools/instance-manager/options.h')
-rw-r--r--server-tools/instance-manager/options.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/server-tools/instance-manager/options.h b/server-tools/instance-manager/options.h
index 3a60de2bb39..6d719c69629 100644
--- a/server-tools/instance-manager/options.h
+++ b/server-tools/instance-manager/options.h
@@ -16,16 +16,16 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
-#if defined(__GNUC__) && defined(USE_PRAGMA_INTERFACE)
-#pragma interface
-#endif
-
/*
Options - all possible options for the instance manager grouped in one
struct.
*/
#include <my_global.h>
+#if defined(__GNUC__) && defined(USE_PRAGMA_INTERFACE)
+#pragma interface
+#endif
+
struct Options
{
#ifdef __WIN__