diff options
author | dgp <dgp@users.sourceforge.net> | 2021-08-26 19:14:01 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2021-08-26 19:14:01 (GMT) |
commit | c3d1d436bcb61bd3afa386c6df23d267b63e8a12 (patch) | |
tree | 5898c6a349bfb5b6e16f9ab1c4f3644f894b2060 /generic/tclOODecls.h | |
parent | 3c6ee745c387c129423f955b09cca3c94ed54955 (diff) | |
parent | a0d2c4332f99377ecd5aef74d42b0041501be806 (diff) | |
download | tcl-c3d1d436bcb61bd3afa386c6df23d267b63e8a12.zip tcl-c3d1d436bcb61bd3afa386c6df23d267b63e8a12.tar.gz tcl-c3d1d436bcb61bd3afa386c6df23d267b63e8a12.tar.bz2 |
repair broken build
Diffstat (limited to 'generic/tclOODecls.h')
-rw-r--r-- | generic/tclOODecls.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclOODecls.h b/generic/tclOODecls.h index 60ecd6c..755ed5a 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,8 +237,8 @@ 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) */ |