summaryrefslogtreecommitdiff
path: root/include/value.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-09-10 05:21:18 -0700
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-09-10 05:21:18 -0700
commit85507088051bdfabf8bc71346290949b78c3c914 (patch)
treed3503b8d28ccac78c5b209bea97a094b4a54aeb7 /include/value.h
parente220af8dc07d845efb81082f3159460406ece9ca (diff)
Fixed various crashes because hidden pointers were not persistently stored
Copying the result value of a function has been fixed New C++ nullptr type is supported for Php::Value
Diffstat (limited to 'include/value.h')
-rw-r--r--include/value.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/value.h b/include/value.h
index 64f92df..e4af1b7 100644
--- a/include/value.h
+++ b/include/value.h
@@ -45,6 +45,11 @@ public:
Value();
/**
+ * Constructor for null ptr
+ */
+ Value(std::nullptr_t value);
+
+ /**
* Constructor based on integer value
* @param value
*/