summaryrefslogtreecommitdiff
path: root/include/classbase.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-02-21 16:59:54 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-02-21 16:59:54 +0100
commite1f97c494ae31b9d67e85c6b17a18bb925bc2989 (patch)
treef7c240f082aad70f35de024bdc229504a0cc5f0a /include/classbase.h
parent9889100041bf14d8bc1b97f1cab4070de36e3e8f (diff)
initial implementation of the Php::dl() function
Diffstat (limited to 'include/classbase.h')
-rw-r--r--include/classbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/classbase.h b/include/classbase.h
index f594f75..9e53a62 100644
--- a/include/classbase.h
+++ b/include/classbase.h
@@ -96,7 +96,7 @@ public:
* Construct a new instance of the object, or to clone the object
* @return Base
*/
- virtual Base* construct() const { return nullptr; }
+ virtual Base *construct() const { return nullptr; }
virtual Base *clone(Base *orig) const { return nullptr; }
/**