[Plib-cvs] plib/src/ssg ssgLoadMDL.cxx,1.47,1.48
Brought to you by:
sjbaker
From: Wolfram K. <wol...@us...> - 2003-12-06 18:25:41
|
Update of /cvsroot/plib/plib/src/ssg In directory sc8-pr-cvs1:/tmp/cvs-serv20208 Modified Files: ssgLoadMDL.cxx Log Message: Fixed: A bug in 1.46 meant it only compiles when "DEBUG" is defined. Index: ssgLoadMDL.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/ssg/ssgLoadMDL.cxx,v retrieving revision 1.47 retrieving revision 1.48 diff -u -d -r1.47 -r1.48 --- ssgLoadMDL.cxx 6 Dec 2003 18:18:20 -0000 1.47 +++ ssgLoadMDL.cxx 6 Dec 2003 18:25:38 -0000 1.48 @@ -124,7 +124,12 @@ #define PRINT_STRUCTURE(a, b) fprintf(wkfp, a, b); #define PRINT_STRUCTURE1(a ) fprintf(wkfp, a); - + +#else + +#define PRINT_STRUCTURE(a, b) +#define PRINT_STRUCTURE1(a ) + #endif //=========================================================================== |