diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-08-28 11:15:19 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-08-28 11:15:19 (GMT) |
commit | da423a1424e34834a64c209244ef64ca7c275f7d (patch) | |
tree | 3820ac7dda66c4d317cedc091c671a5c231046db /generic/tclCkalloc.c | |
parent | 478e248339265d65360a9ad85ae239fec700f6a3 (diff) | |
parent | e9a4ca4f22d40f304a6f50f9b410651ce75098cd (diff) | |
download | tcl-da423a1424e34834a64c209244ef64ca7c275f7d.zip tcl-da423a1424e34834a64c209244ef64ca7c275f7d.tar.gz tcl-da423a1424e34834a64c209244ef64ca7c275f7d.tar.bz2 |
Merge 8.6
Diffstat (limited to 'generic/tclCkalloc.c')
-rw-r--r-- | generic/tclCkalloc.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/generic/tclCkalloc.c b/generic/tclCkalloc.c index d60633b..57f65c8 100644 --- a/generic/tclCkalloc.c +++ b/generic/tclCkalloc.c @@ -1121,6 +1121,8 @@ Tcl_AttemptDbCkalloc( int line) { char *result; + (void)file; + (void)line; result = (char *) TclpAlloc(size); return result; @@ -1200,6 +1202,8 @@ Tcl_AttemptDbCkrealloc( int line) { char *result; + (void)file; + (void)line; result = (char *) TclpRealloc(ptr, size); return result; @@ -1230,6 +1234,8 @@ Tcl_DbCkfree( const char *file, int line) { + (void)file; + (void)line; TclpFree(ptr); } @@ -1248,12 +1254,14 @@ void Tcl_InitMemory( Tcl_Interp *interp) { + (void)interp; } int Tcl_DumpActiveMemory( const char *fileName) { + (void)fileName; return TCL_OK; } @@ -1262,6 +1270,8 @@ Tcl_ValidateAllMemory( const char *file, int line) { + (void)file; + (void)line; } int @@ -1269,6 +1279,8 @@ TclDumpMemoryInfo( ClientData clientData, int flags) { + (void)clientData; + (void)flags; return 1; } |