diff options
author | davygrvy <davygrvy@pobox.com> | 2004-11-03 21:20:30 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2004-11-03 21:20:30 (GMT) |
commit | 7c9c8375113b024e2dad31b8e286b986d3eb5e97 (patch) | |
tree | 1d4ef0fdbb33c98d6981eb78e760485e94addf5b | |
parent | 7606fb1c7890e4b1fd4f75e29fcad7b33b7ec506 (diff) | |
download | tcl-7c9c8375113b024e2dad31b8e286b986d3eb5e97.zip tcl-7c9c8375113b024e2dad31b8e286b986d3eb5e97.tar.gz tcl-7c9c8375113b024e2dad31b8e286b986d3eb5e97.tar.bz2 |
* generic/tclCompile.h: Removed extrainious reset of
TCL_STORAGE_CLASS missed in last edit.
-rw-r--r-- | generic/tclCompile.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index cfffc37..c950096 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -8,7 +8,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.50 2004/11/03 00:11:39 davygrvy Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.51 2004/11/03 21:20:30 davygrvy Exp $ */ #ifndef _TCLCOMPILATION @@ -1101,7 +1101,4 @@ MODULE_SCOPE int TclWordKnownAtCompileTime _ANSI_ARGS_(( #define TclMin(i, j) ((((int) i) < ((int) j))? (i) : (j)) #define TclMax(i, j) ((((int) i) > ((int) j))? (i) : (j)) -# undef TCL_STORAGE_CLASS -# define TCL_STORAGE_CLASS DLLIMPORT - #endif /* _TCLCOMPILATION */ |