diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-11-21 07:50:31 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-11-21 07:50:31 (GMT) |
commit | 02d514946365467a42f4975cae649d248396f7f5 (patch) | |
tree | 923d6a3543b6bf80a8731f03d80f266f745b30ba /generic/tclOOCall.c | |
parent | bbc2241167b3c554d930f227cbfd3c7e5497e6c9 (diff) | |
parent | 3a4b0be0b1835791115d8aeabeffc2ea302f1e98 (diff) | |
download | tcl-02d514946365467a42f4975cae649d248396f7f5.zip tcl-02d514946365467a42f4975cae649d248396f7f5.tar.gz tcl-02d514946365467a42f4975cae649d248396f7f5.tar.bz2 |
Merge 8.7
Diffstat (limited to 'generic/tclOOCall.c')
-rw-r--r-- | generic/tclOOCall.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclOOCall.c b/generic/tclOOCall.c index bb81cfb..4eafe2e 100644 --- a/generic/tclOOCall.c +++ b/generic/tclOOCall.c @@ -96,7 +96,7 @@ static void AddClassMethodNames(Class *clsPtr, const int flags, Tcl_HashTable *const examinedClassesPtr); static inline void AddDefinitionNamespaceToChain(Class *const definerCls, Tcl_Obj *const namespaceName, - DefineChain *const definePtr, const int flags); + DefineChain *const definePtr, int flags); static inline void AddMethodToCallChain(Method *const mPtr, struct ChainBuilder *const cbPtr, Tcl_HashTable *const doneFilters, @@ -2022,8 +2022,8 @@ AddSimpleClassDefineNamespaces( static inline void AddDefinitionNamespaceToChain( - Class *definerCls, /* What class defines this entry. */ - Tcl_Obj *namespaceName, /* The name for this entry (or NULL, a + Class *const definerCls, /* What class defines this entry. */ + Tcl_Obj *const namespaceName, /* The name for this entry (or NULL, a * no-op). */ DefineChain *const definePtr, /* The define chain to add the method |