summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-05-06 07:35:05 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-05-06 07:35:05 (GMT)
commitd3c1612587ff8f7f288fa96a2daddfdcd0cbff32 (patch)
tree1de25a0ce1271dddf30868d57471b4c788531f20 /generic/tclInt.h
parentffd62239ea93e9fa93f1036f03a281ed5d522848 (diff)
parent9d84efaa149ad0656809cbb06f7c05ffbab65c60 (diff)
downloadtcl-d3c1612587ff8f7f288fa96a2daddfdcd0cbff32.zip
tcl-d3c1612587ff8f7f288fa96a2daddfdcd0cbff32.tar.gz
tcl-d3c1612587ff8f7f288fa96a2daddfdcd0cbff32.tar.bz2
merge trunk
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 66d262a..e837ca5 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -2625,9 +2625,7 @@ MODULE_SCOPE const Tcl_ObjType tclProcBodyType;
MODULE_SCOPE const Tcl_ObjType tclStringType;
MODULE_SCOPE const Tcl_ObjType tclArraySearchType;
MODULE_SCOPE const Tcl_ObjType tclEnsembleCmdType;
-#ifndef TCL_WIDE_INT_IS_LONG
MODULE_SCOPE const Tcl_ObjType tclWideIntType;
-#endif
MODULE_SCOPE const Tcl_ObjType tclRegexpType;
MODULE_SCOPE Tcl_ObjType tclCmdNameType;
@@ -4376,7 +4374,6 @@ MODULE_SCOPE Tcl_PackageInitProc Procbodytest_SafeInit;
* value of strings like: "yes", "no", "true", "false", "on", "off".
*/
-#ifndef TCL_WIDE_INT_IS_LONG
#define TclSetWideIntObj(objPtr, w) \
do { \
TclInvalidateStringRep(objPtr); \
@@ -4384,7 +4381,6 @@ MODULE_SCOPE Tcl_PackageInitProc Procbodytest_SafeInit;
(objPtr)->internalRep.wideValue = (Tcl_WideInt)(w); \
(objPtr)->typePtr = &tclWideIntType; \
} while (0)
-#endif
#define TclSetDoubleObj(objPtr, d) \
do { \