summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-13 23:40:20 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-13 23:40:20 +0100
commit684f81e8bcbadc3d522e6557161275deaad4fd3b (patch)
treee54421de47ed6680c254e0d42bc63e06db7e5410 /documentation
parent2381b65c0bf4fc8a78e9040ffb4a1674bab4e2ad (diff)
fixed example code
Diffstat (limited to 'documentation')
-rw-r--r--documentation/constructors-and-destructors.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/constructors-and-destructors.html b/documentation/constructors-and-destructors.html
index b5bdeb0..d7cc61b 100644
--- a/documentation/constructors-and-destructors.html
+++ b/documentation/constructors-and-destructors.html
@@ -107,7 +107,7 @@ public:
* php "constructor"
* @param params
*/
- void __construct(Php::Parameters &params)
+ void __construct(Php::Parameters &amp;params)
{
// copy first parameter (if available)
if (params.size() > 0) _value = params[0];
@@ -267,7 +267,7 @@ public:
* php "constructor"
* @param params
*/
- void __construct(Php::Parameters &params)
+ void __construct(Php::Parameters &amp;params)
{
// copy first parameter (if available)
if (params.size() > 0) _value = params[0];