summaryrefslogtreecommitdiff
path: root/src/classbase.cpp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-10 10:39:22 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-10 10:39:22 +0100
commitd2e10c764d1b8860dd798eda3055fc957ff556ad (patch)
tree10e6d19cdc71f27e08e0134ad30fe34cd05b7046 /src/classbase.cpp
parent49d88d98a0656233f15923d31ea67a1ed229e514 (diff)
fixed iterators for php 5.3 + updated documentation about iterators
Diffstat (limited to 'src/classbase.cpp')
-rw-r--r--src/classbase.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/classbase.cpp b/src/classbase.cpp
index 8926b3e..2ea813f 100644
--- a/src/classbase.cpp
+++ b/src/classbase.cpp
@@ -367,8 +367,6 @@ zend_object_value ClassBase::createObject(zend_class_entry *entry TSRMLS_DC)
*/
zend_object_iterator *ClassBase::getIterator(zend_class_entry *entry, zval *object, int by_ref)
{
- std::cout << "call to getIterator" << std::endl;
-
// by-ref is not possible (copied from SPL)
if (by_ref) throw Php::Exception("Foreach by ref is not possible");