[wpdev-commits] wolfpack verinfo.h,1.41,1.42
Brought to you by:
rip,
thiagocorrea
From: spddmn <xxx...@us...> - 2004-09-02 17:21:34
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15016 Modified Files: verinfo.h Log Message: Now reports DEBUG or RELEASE build info in the "product name" parameter, depending on preprocessor #define _DEBUG Index: verinfo.h =================================================================== RCS file: /cvsroot/wpdev/wolfpack/verinfo.h,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** verinfo.h 19 Aug 2004 19:17:08 -0000 1.41 --- verinfo.h 2 Sep 2004 17:21:25 -0000 1.42 *************** *** 31,35 **** inline const char* productString() { ! return "Wolfpack"; } --- 31,39 ---- inline const char* productString() { ! #ifdef _DEBUG ! return "Wolfpack DEBUG BUILD"; ! #else ! return "Wolfpack Release"; ! #endif } |