summaryrefslogtreecommitdiff
path: root/src/hashiterator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hashiterator.h')
-rw-r--r--src/hashiterator.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/hashiterator.h b/src/hashiterator.h
index 8573a03..d68ad4e 100644
--- a/src/hashiterator.h
+++ b/src/hashiterator.h
@@ -27,6 +27,7 @@ public:
* Constructor
* @param hashtable The hashtable to iterate over
* @param first Should it start on the first position?
+ * @param tsrm_ls
*/
HashIterator(HashTable *hashtable, bool first) : _table(hashtable)
{
@@ -52,8 +53,9 @@ public:
/**
* Copy constructor
* @param that
+ * @param tsrm_ls
*/
- HashIterator(const HashIterator &that) :
+ HashIterator(const HashIterator &that TSRMLS_DC) :
_table(that._table), _position(that._position)
{
// read current position
@@ -67,6 +69,7 @@ public:
/**
* Clone the object
+ * @param tsrm_ls
* @return IteratorImpl
*/
virtual IteratorImpl *clone()