diff options
author | dkf <dkf@noemail.net> | 2008-09-24 09:51:46 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2008-09-24 09:51:46 (GMT) |
commit | 24cac8b582ed03002ae6994a76198f941dd52a91 (patch) | |
tree | 55b6d6da125149d35ee53c44836935643bc70c13 /generic/tclOOMethod.c | |
parent | 29c12ae0d08e29695991284a60af4c23124c55c9 (diff) | |
download | tcl-24cac8b582ed03002ae6994a76198f941dd52a91.zip tcl-24cac8b582ed03002ae6994a76198f941dd52a91.tar.gz tcl-24cac8b582ed03002ae6994a76198f941dd52a91.tar.bz2 |
Remove obsolete debugging macro. [Bug 2124814]
FossilOrigin-Name: 75b96474522de4528c10ddd8fe48edc44f2d9ce4
Diffstat (limited to 'generic/tclOOMethod.c')
-rw-r--r-- | generic/tclOOMethod.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/generic/tclOOMethod.c b/generic/tclOOMethod.c index dfd2d14..34a3172 100644 --- a/generic/tclOOMethod.c +++ b/generic/tclOOMethod.c @@ -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: tclOOMethod.c,v 1.19 2008/09/23 05:05:54 dkf Exp $ + * RCS: @(#) $Id: tclOOMethod.c,v 1.20 2008/09/24 09:51:47 dkf Exp $ */ #ifdef HAVE_CONFIG_H @@ -18,12 +18,6 @@ #include "tclOOInt.h" #include "tclCompile.h" -#if 0 -#define DBPRINT(format, ...) (fprintf(stderr, "DEBUG:" format "\n", __VA_ARGS__)) -#else -#define DBPRINT(format, ...) ((void) 0) -#endif - /* * Structure used to help delay computing names of objects or classes for * [info frame] until needed, making invokation faster in the normal case. |