aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorantirez <antirez>2005-03-14 14:39:01 +0000
committerantirez <antirez>2005-03-14 14:39:01 +0000
commit49b3429ec87fd6d6b26706b9871fe33d076da752 (patch)
tree6095b6a5dc378a83e415e144f605dc79181e23a6 /jim.h
parenta14ede31a66f7e54b326a53ec123e7dd2e2f1dab (diff)
downloadjimtcl-49b3429ec87fd6d6b26706b9871fe33d076da752.zip
jimtcl-49b3429ec87fd6d6b26706b9871fe33d076da752.tar.gz
jimtcl-49b3429ec87fd6d6b26706b9871fe33d076da752.tar.bz2
'iterator' argument modified to 'iter' for C++ STL safety.
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/jim.h b/jim.h
index 7bab289..60ddc15 100644
--- a/jim.h
+++ b/jim.h
@@ -1,7 +1,7 @@
/* Jim - A small embeddable Tcl interpreter
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
*
- * $Id: jim.h,v 1.53 2005/03/14 13:11:26 antirez Exp $
+ * $Id: jim.h,v 1.54 2005/03/14 14:39:01 antirez Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -545,7 +545,7 @@ JIM_STATIC int JIM_API(Jim_ResizeHashTable) (Jim_HashTable *ht);
JIM_STATIC Jim_HashTableIterator *JIM_API(Jim_GetHashTableIterator)
(Jim_HashTable *ht);
JIM_STATIC Jim_HashEntry * JIM_API(Jim_NextHashEntry)
- (Jim_HashTableIterator *iterator);
+ (Jim_HashTableIterator *iter);
/* objects */
JIM_STATIC Jim_Obj * JIM_API(Jim_NewObj) (Jim_Interp *interp);