summaryrefslogtreecommitdiffstats
path: root/generic/tclCkalloc.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-08-28 11:15:19 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-08-28 11:15:19 (GMT)
commitda423a1424e34834a64c209244ef64ca7c275f7d (patch)
tree3820ac7dda66c4d317cedc091c671a5c231046db /generic/tclCkalloc.c
parent478e248339265d65360a9ad85ae239fec700f6a3 (diff)
parente9a4ca4f22d40f304a6f50f9b410651ce75098cd (diff)
downloadtcl-da423a1424e34834a64c209244ef64ca7c275f7d.zip
tcl-da423a1424e34834a64c209244ef64ca7c275f7d.tar.gz
tcl-da423a1424e34834a64c209244ef64ca7c275f7d.tar.bz2
Merge 8.6
Diffstat (limited to 'generic/tclCkalloc.c')
-rw-r--r--generic/tclCkalloc.c12
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;
}