mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 03:01:27 +00:00
* GSWeb.framework/GSWDebug.h: fixed #define.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@16016 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
13f054fe51
commit
8970152eff
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-02-19 Mirko Viviani <mirko.viviani@rccr.cremona.it>
|
||||
|
||||
* GSWeb.framework/GSWDebug.h: fixed #define.
|
||||
|
||||
2003-02-01 Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
* GSWeb/NSString+Trimming.m:
|
||||
o Replaced DataToHexString with -[NSData
|
||||
|
|
|
@ -41,10 +41,10 @@ extern void GSWLogAssertGoodFn(CONST char* file,int line,NSObject* object);
|
|||
//Log Memory Alloc/Dealloc
|
||||
#ifdef GSWDEBUG_MEM
|
||||
#define GSWLogMemC(cString); GSWLogC_(__FILE__,__LINE__,cString);
|
||||
#define GSWLogMemCF(format,...); { fprintf(stderr,"File %s: %d. ",file,line); fprintf(stderr,format, ## args); };
|
||||
#define GSWLogMemCF(format, args...); { fprintf(stderr,"File %s: %d. ",file,line); fprintf(stderr,format, ## args); };
|
||||
#else
|
||||
#define GSWLogMemC(cString);
|
||||
#define GSWLogMemCF(format,...);
|
||||
#define GSWLogMemCF(format, args...);
|
||||
#endif
|
||||
|
||||
//Log Locks
|
||||
|
@ -66,7 +66,7 @@ extern void GSWLogAssertGoodFn(CONST char* file,int line,NSObject* object);
|
|||
#define GSWLogDumpObject(object,deep); {}
|
||||
#define GSWLogAssertGood(object); {}
|
||||
#define GSWLogMemC(cString); {}
|
||||
#define GSWLogMemCF(cString,...); {}
|
||||
#define GSWLogMemCF(cString, args...); {}
|
||||
#define GSWLogLockC(cString); {}
|
||||
#define GSWLogDeepC(cString); {}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue