From: stephan b. <sg...@us...> - 2004-12-30 17:29:12
|
Update of /cvsroot/pclasses/pclasses2/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2354/test Modified Files: s11nTest.cpp Log Message: Explicitely undef NDEBUG. Index: s11nTest.cpp =================================================================== RCS file: /cvsroot/pclasses/pclasses2/test/s11nTest.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- s11nTest.cpp 29 Dec 2004 20:11:21 -0000 1.8 +++ s11nTest.cpp 30 Dec 2004 17:28:52 -0000 1.9 @@ -1,3 +1,7 @@ +#ifdef NDEBUG +# undef NDEBUG +#endif + #include <pclasses/s11n/s11n_debuggering_macros.h> #include <pclasses/SIO/SIO.h> @@ -483,5 +487,14 @@ } +// size_t S1 = 7; +// ulong S2 = 7; +// int S3 = 7; +// char S4 = '7'; +// save( S1, std::cout ); +// save( S2, std::cout ); +// save( S3, std::cout ); +// save( S4, std::cout ); + return 0; } |