From 61ba30d716dab670a5f2ed0ee2f6650375b2058d Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Tue, 15 Oct 2013 05:54:52 -0700 Subject: Calling custom member methods is now functional --- src/members.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/members.cpp') diff --git a/src/members.cpp b/src/members.cpp index 5711a4b..4ff1b60 100644 --- a/src/members.cpp +++ b/src/members.cpp @@ -34,8 +34,6 @@ int Members::methods() // loop through the functions for (auto it = begin(); it != end(); it++) { - std::cout << "iter" << std::endl; - // check if this is a method if (it->isMethod()) result++; } @@ -56,8 +54,6 @@ struct _zend_function_entry *Members::methods(const char *classname) // the number of methods int count = methods(); - std::cout << "allocate " << count << " methods" << std::endl; - // allocate memory for the functions _methods = new zend_function_entry[count + 1]; -- cgit v1.2.3