summaryrefslogtreecommitdiff
path: root/include/exception.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-24 13:43:47 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-24 13:43:47 +0100
commit2fd4198b78358cf2ba527296fafb5b1728e28ea8 (patch)
tree798098f25293908c7fae4e35e8761918460cdb3e /include/exception.h
parent930ab4880b65885322eb7ca4772b8cdb49a2b0ae (diff)
added tsrm parameter to all methods to make it compile on tsrm platforms
Diffstat (limited to 'include/exception.h')
-rw-r--r--include/exception.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/exception.h b/include/exception.h
index 8475925..7722424 100644
--- a/include/exception.h
+++ b/include/exception.h
@@ -58,12 +58,15 @@ public:
/**
* Process the exception
*
- * This method is called only from withing the PHP-CPP library,
+ * This method is called only from within the PHP-CPP library,
* and will turn the exception into a PHP exception
*
+ * @param tsrm_ls
+ *
* @internal
*/
- virtual void process();
+// virtual void process();
+ virtual void process(void ***tsrm_ls);
};
/**