summaryrefslogtreecommitdiffstats
path: root/generic/tclOOCall.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-11-21 07:36:27 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-11-21 07:36:27 (GMT)
commite9c1676826c1619d1c46b40f6201cfbb8ee6acf8 (patch)
tree89b26b4bbcbd72de34fcd620abc17d99e317289c /generic/tclOOCall.c
parentfcfb05f5d36322a8ecfdc033cdf8de9994f37e5b (diff)
downloadtcl-e9c1676826c1619d1c46b40f6201cfbb8ee6acf8.zip
tcl-e9c1676826c1619d1c46b40f6201cfbb8ee6acf8.tar.gz
tcl-e9c1676826c1619d1c46b40f6201cfbb8ee6acf8.tar.bz2
Fix windows build with Visual Studio
Diffstat (limited to 'generic/tclOOCall.c')
-rw-r--r--generic/tclOOCall.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclOOCall.c b/generic/tclOOCall.c
index 425995a..36fc3bd 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