From 434693b8389a5816d73f089e064819a19f76f798 Mon Sep 17 00:00:00 2001 From: smatz Date: Mon, 7 Sep 2009 21:01:24 +0000 Subject: (svn r17464) -Codechange: use C++0x mode when compiling with gcc >= 4.3 or icc >= 11.0 --- src/table/settings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/table/settings.h') diff --git a/src/table/settings.h b/src/table/settings.h index 4fa1a872b..1f832dbc6 100644 --- a/src/table/settings.h +++ b/src/table/settings.h @@ -83,7 +83,7 @@ static bool UpdateClientConfigValues(int32 p1); */ #define NSD_GENERAL(name, def, cmd, guiflags, min, max, interval, many, str, proc, load)\ - {name, (const void*)(def), {cmd}, {guiflags}, min, max, interval, many, str, proc, load} + {name, (const void*)(def), {(byte)cmd}, {(byte)guiflags}, min, max, interval, many, str, proc, load} /* Macros for various objects to go in the configuration file. * This section is for global variables */ -- cgit v1.2.3-54-g00ecf