summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2013-08-06 13:20:36 (GMT)
committerdgp <dgp@users.sourceforge.net>2013-08-06 13:20:36 (GMT)
commit8bd533d76ea3530028e7bc3c32ec981f3c78c683 (patch)
tree27620928337e684beb6dd84429d9582c3a5d0dbd /generic/tclInt.h
parent23d61a10c23d99df7ef3289f5cf35159e95426d9 (diff)
downloadtcl-8bd533d76ea3530028e7bc3c32ec981f3c78c683.zip
tcl-8bd533d76ea3530028e7bc3c32ec981f3c78c683.tar.gz
tcl-8bd533d76ea3530028e7bc3c32ec981f3c78c683.tar.bz2
Eliminate the union that is no longer needed.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 1df09b3..d398591 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -1208,12 +1208,8 @@ typedef struct CmdFrame {
const char *pc; /* ... and instruction pointer. */
} tebc;
} data;
- union {
- struct {
- const char *cmd; /* The executed command, if possible... */
- int len; /* ... and its length. */
- } str;
- } cmd;
+ const char *cmd; /* The executed command, if possible... */
+ int len; /* ... and its length. */
int numLevels; /* Value of interp's numLevels when the frame
* was pushed. */
const struct CFWordBC *litarg;