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 /generic/tclLiteral.c | |
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++.
Diffstat (limited to 'generic/tclLiteral.c')
-rw-r--r-- | generic/tclLiteral.c | 3 |
1 files changed, 1 insertions, 2 deletions
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; |