summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authormsofer <msofer@noemail.net>2008-01-15 11:59:24 (GMT)
committermsofer <msofer@noemail.net>2008-01-15 11:59:24 (GMT)
commit19cef033cd6c6be02ec7b75b07c79d4239914b47 (patch)
treee27aa4e1f189a9cb9a14f763931bfcb2af0ee48b /generic/tclCompile.h
parentb7e1dc6115ec155398514d5cd30ef453fcaf6910 (diff)
downloadtcl-19cef033cd6c6be02ec7b75b07c79d4239914b47.zip
tcl-19cef033cd6c6be02ec7b75b07c79d4239914b47.tar.gz
tcl-19cef033cd6c6be02ec7b75b07c79d4239914b47.tar.bz2
* generic/tclBasic.c: Replacing 'operator' by 'op' in the def
* generic/tclCompExpr.c: of struct TclOpCmdClientData to * generic/tclCompile.h: accomodate C++ compilers [Bug 1855644] FossilOrigin-Name: 5f67dc9efaea38419808eec2de05d80ddec54d6b
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index c6cc9e3..f9eec91 100644
--- a/generic/tclCompile.h
+++ b/generic/tclCompile.h
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclCompile.h,v 1.86 2007/12/13 15:23:16 dgp Exp $
+ * RCS: @(#) $Id: tclCompile.h,v 1.87 2008/01/15 11:59:28 msofer Exp $
*/
#ifndef _TCLCOMPILATION
@@ -817,7 +817,7 @@ MODULE_SCOPE AuxDataType tclDictUpdateInfoType;
*/
typedef struct {
- const char *operator;
+ const char *op; /* Do not call it 'operator': C++ reserved */
const char *expected;
union {
int numArgs;