summaryrefslogtreecommitdiff
path: root/src/members.cpp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-10-15 05:54:52 -0700
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-10-15 05:54:52 -0700
commit61ba30d716dab670a5f2ed0ee2f6650375b2058d (patch)
tree711db9359015de260071088ef027b020cd95d4b3 /src/members.cpp
parentb2042dbd58c043ab49e9b0dbb51bf8516fe8cea8 (diff)
Calling custom member methods is now functional
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];