diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-08-27 07:13:17 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-08-27 07:13:17 (GMT) |
commit | 1ad6db680c81bf376a0846a051a14257487570c2 (patch) | |
tree | 424180e7477f011915ce5b72cc32bb11b94ad242 /generic/tclOODecls.h | |
parent | 4d544cb15970246ab5a46c3eb24e61106517e356 (diff) | |
parent | fdf0eab42848aced45b470262cc3507d2f9a8c5f (diff) | |
download | tcl-1ad6db680c81bf376a0846a051a14257487570c2.zip tcl-1ad6db680c81bf376a0846a051a14257487570c2.tar.gz tcl-1ad6db680c81bf376a0846a051a14257487570c2.tar.bz2 |
Merge 8.7
Diffstat (limited to 'generic/tclOODecls.h')
-rw-r--r-- | generic/tclOODecls.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/generic/tclOODecls.h b/generic/tclOODecls.h index 8278a88..d3ec358 100644 --- a/generic/tclOODecls.h +++ b/generic/tclOODecls.h @@ -120,7 +120,7 @@ TCLAPI Tcl_Obj * Tcl_GetObjectName(Tcl_Interp *interp, TCLAPI int Tcl_MethodIsPrivate(Tcl_Method method); /* Slot 30 is reserved */ /* 31 */ -TCLAPI void TclUnusedStubEntry(void); +TCLAPI void TclOOUnusedStubEntry(void); typedef struct { const struct TclOOIntStubs *tclOOIntStubs; @@ -161,7 +161,7 @@ typedef struct TclOOStubs { Tcl_Obj * (*tcl_GetObjectName) (Tcl_Interp *interp, Tcl_Object object); /* 28 */ int (*tcl_MethodIsPrivate) (Tcl_Method method); /* 29 */ void (*reserved30)(void); - void (*tclUnusedStubEntry) (void); /* 31 */ + void (*tclOOUnusedStubEntry) (void); /* 31 */ } TclOOStubs; extern const TclOOStubs *tclOOStubsPtr; @@ -237,11 +237,13 @@ extern const TclOOStubs *tclOOStubsPtr; #define Tcl_MethodIsPrivate \ (tclOOStubsPtr->tcl_MethodIsPrivate) /* 29 */ /* Slot 30 is reserved */ -#define TclUnusedStubEntry \ - (tclOOStubsPtr->tclUnusedStubEntry) /* 31 */ +#define TclOOUnusedStubEntry \ + (tclOOStubsPtr->tclOOUnusedStubEntry) /* 31 */ #endif /* defined(USE_TCLOO_STUBS) */ /* !END!: Do not edit above this line. */ +#undef TclOOUnusedStubEntry + #endif /* _TCLOODECLS */ |