diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-07-15 18:31:34 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-07-15 18:31:34 (GMT) |
commit | 795721e7172e3fe72dc211f941a7519df12958b6 (patch) | |
tree | 68fac1e429bd8f3ebf175551b68de3d4f67072b4 | |
parent | 904a467ccfeca1913883354a57a3639c84f403b1 (diff) | |
download | tcl-795721e7172e3fe72dc211f941a7519df12958b6.zip tcl-795721e7172e3fe72dc211f941a7519df12958b6.tar.gz tcl-795721e7172e3fe72dc211f941a7519df12958b6.tar.bz2 |
* generic/tclLiteral.c (TclReleaseLiteral): Removed unused
variable 'codePtr' to silence a message from VC++.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tclLiteral.c | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2004-07-15 Kevin Kenny <kennykb@acm.org> + + * generic/tclLiteral.c (TclReleaseLiteral): Removed unused + variable 'codePtr' to silence a message from VC++. + 2004-07-15 Miguel Sofer <msofer@users.sf.net> * generic/tclCompile.c (TclCompileScript): diff --git a/generic/tclLiteral.c b/generic/tclLiteral.c index ad38167..c887067 100644 --- a/generic/tclLiteral.c +++ b/generic/tclLiteral.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclLiteral.c,v 1.17 2004/07/15 17:42:12 msofer Exp $ + * RCS: @(#) $Id: tclLiteral.c,v 1.18 2004/07/15 18:31:34 kennykb Exp $ */ #include "tclInt.h" @@ -685,7 +685,6 @@ TclReleaseLiteral(interp, objPtr) Interp *iPtr = (Interp *) interp; LiteralTable *globalTablePtr = &(iPtr->literalTable); register LiteralEntry *entryPtr, *prevPtr; - ByteCode* codePtr; char *bytes; int length, index; |