summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-01-16 07:50:48 -0800
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-01-16 07:50:48 -0800
commit07d047f1645a79284ae45c0f809f59d615698df6 (patch)
tree1f18d76017e94bd6433e82bdf80e3203c2d532a5
parent6a49c12782e6786257804a1a0a84456cb85bb3a4 (diff)
removed debug code
-rw-r--r--src/includes.h3
-rw-r--r--src/origexception.cpp4
2 files changed, 0 insertions, 7 deletions
diff --git a/src/includes.h b/src/includes.h
index 95f517e..a0f883a 100644
--- a/src/includes.h
+++ b/src/includes.h
@@ -19,9 +19,6 @@
#include <set>
#include <exception>
-// for debugging
-#include <iostream>
-
/**
* PHP includes
*/
diff --git a/src/origexception.cpp b/src/origexception.cpp
index 3cdd42a..4406158 100644
--- a/src/origexception.cpp
+++ b/src/origexception.cpp
@@ -22,8 +22,6 @@ OrigException::OrigException(struct _zval_struct *zval) :
Exception("OrigException"),
_restored(false)
{
- std::cout << "save the exception" << std::endl;
-
// save the exception
zend_exception_save();
}
@@ -64,8 +62,6 @@ OrigException::~OrigException() noexcept
*/
void OrigException::restore()
{
- std::cout << "restore the exception" << std::endl;
-
// restore the exception
zend_exception_restore();