summaryrefslogtreecommitdiff
path: root/src/members.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/members.cpp')
-rw-r--r--src/members.cpp4
1 files changed, 0 insertions, 4 deletions
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];