diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-11-15 19:13:55 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-11-15 19:13:55 (GMT) |
commit | 511765faae09dd5a56da42a2df297514cff7df3e (patch) | |
tree | 7c88e73aa57e7ac1f0e2822d6f6691ec6e45dd86 /generic/tclCompile.h | |
parent | 3046c87be9fbd3d2dbf044039d27385a0c38aeed (diff) | |
download | tcl-511765faae09dd5a56da42a2df297514cff7df3e.zip tcl-511765faae09dd5a56da42a2df297514cff7df3e.tar.gz tcl-511765faae09dd5a56da42a2df297514cff7df3e.tar.bz2 |
Add entry for Tcl_StaticPackage in internal stub table, since the public one is deprecated and will be removed in 9.0
Clean-up a lot of type-casts, which are not necessary any more.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 3e349b2..e5a8d52 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -266,7 +266,7 @@ typedef struct AuxDataType { typedef struct AuxData { const AuxDataType *type; /* Pointer to the AuxData type associated with * this ClientData. */ - ClientData clientData; /* The compilation data itself. */ + void *clientData; /* The compilation data itself. */ } AuxData; /* |