diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-29 12:05:59 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-29 12:05:59 (GMT) |
commit | cf3f133df1d082197bba097362768af248e334dc (patch) | |
tree | 6435d58926127bf95bde3bdc0ab4cb5e7d4e9744 /unix/tclConfig.h.in | |
parent | eb03584c16b7a1b99800e60e00ed43a73745b2d2 (diff) | |
download | tcl-cf3f133df1d082197bba097362768af248e334dc.zip tcl-cf3f133df1d082197bba097362768af248e334dc.tar.gz tcl-cf3f133df1d082197bba097362768af248e334dc.tar.bz2 |
(more experimenting): Make TCL_LL_MODIFIER behave more close to intuitive expectations: If the platform has a "long long" type, use it for Tcl_WideInt, so TCL_LL_MODIFIER is really a replacement for "ll" on most platforms (Win32/Win64 as most notable exception).
Will need a new TIP.
Diffstat (limited to 'unix/tclConfig.h.in')
-rw-r--r-- | unix/tclConfig.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclConfig.h.in b/unix/tclConfig.h.in index adbc80d..fed3872 100644 --- a/unix/tclConfig.h.in +++ b/unix/tclConfig.h.in @@ -400,7 +400,7 @@ /* Does this platform have wide high-resolution clicks? */ #undef TCL_WIDE_CLICKS -/* Are wide integers to be implemented with C 'long's? */ +/* Do Tcl_WideInt, 'long' and 'long long' all have the same size (64-bit) ? */ #undef TCL_WIDE_INT_IS_LONG /* What type should be used to define wide integers? */ |