diff options
author | dgp <dgp@users.sourceforge.net> | 2013-08-06 13:20:36 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-08-06 13:20:36 (GMT) |
commit | 8bd533d76ea3530028e7bc3c32ec981f3c78c683 (patch) | |
tree | 27620928337e684beb6dd84429d9582c3a5d0dbd /generic/tclInt.h | |
parent | 23d61a10c23d99df7ef3289f5cf35159e95426d9 (diff) | |
download | tcl-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.h | 8 |
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; |