(svn r17464) -Codechange: use C++0x mode when compiling with gcc >= 4.3 or icc >= 11.0

This commit is contained in:
smatz
2009-09-07 21:01:24 +00:00
parent fe7032a7a6
commit 434693b838
5 changed files with 53 additions and 28 deletions

View File

@@ -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 */