From: John L. <jr...@us...> - 2006-08-08 03:25:28
|
Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv23873/modules/wxluadebug/src Modified Files: splttree.cpp Log Message: change #ifdef to #if defined(...) Index: splttree.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/splttree.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** splttree.cpp 7 Aug 2006 21:17:12 -0000 1.12 --- splttree.cpp 8 Aug 2006 03:25:25 -0000 1.13 *************** *** 45,49 **** #include <math.h> ! #ifdef __MINGW32__ && defined(UNREFERENCED_PARAMETER) #undef UNREFERENCED_PARAMETER #endif // __MINGW32__ --- 45,49 ---- #include <math.h> ! #if defined(__MINGW32__) && defined(UNREFERENCED_PARAMETER) #undef UNREFERENCED_PARAMETER #endif // __MINGW32__ |