summaryrefslogtreecommitdiff
path: root/include/byref.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-05 17:12:36 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-05 17:12:36 +0100
commitaca6699d789e88c1b5425554d35c13acdd453ead (patch)
treee640f2d64521f3f4a76cb0f985def2dacf030d13 /include/byref.h
parentf9717a68bd29ca20234fd1c53f226964a5cdd7a6 (diff)
ByVal and ByRef variable now have nullable set to false by default (which is also the default in PHP), updates to documentation
Diffstat (limited to 'include/byref.h')
-rw-r--r--include/byref.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/byref.h b/include/byref.h
index a10fff1..e828660 100644
--- a/include/byref.h
+++ b/include/byref.h
@@ -33,7 +33,7 @@ public:
* @param nullable Can it be null?
* @param required Is this argument required?
*/
- ByRef(const char *name, const char *classname, bool nullable = true, bool required = true) : Argument(name, classname, nullable, required, true) {}
+ ByRef(const char *name, const char *classname, bool nullable = false, bool required = true) : Argument(name, classname, nullable, required, true) {}
/**
* Copy constructor