summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorandreask <andreask>2013-05-22 16:39:01 (GMT)
committerandreask <andreask>2013-05-22 16:39:01 (GMT)
commit3fad6ea7aff79c539045d7ae893fe71696ff3498 (patch)
tree0f5483fad3b58a5b6905cbbade684f86aa6b35a3 /generic
parent954c40f0e8c4fb566439235986ee384efc88ad0f (diff)
downloadtcl-3fad6ea7aff79c539045d7ae893fe71696ff3498.zip
tcl-3fad6ea7aff79c539045d7ae893fe71696ff3498.tar.gz
tcl-3fad6ea7aff79c539045d7ae893fe71696ff3498.tar.bz2
Removed const qualifier causing the HP native cc to error out (error 1675: Duplicate type qualifier "const").
Diffstat (limited to 'generic')
-rw-r--r--generic/tclCompile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index f6dfbad..cdaf985 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.c
@@ -51,7 +51,7 @@ static int traceInitialized = 0;
* existence of a procedure call frame to distinguish these.
*/
-const InstructionDesc const tclInstructionTable[] = {
+InstructionDesc const tclInstructionTable[] = {
/* Name Bytes stackEffect #Opnds Operand types */
{"done", 1, -1, 0, {OPERAND_NONE}},
/* Finish ByteCode execution and return stktop (top stack item) */