summaryrefslogtreecommitdiff
path: root/hhvm/extensionimpl.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-01-21 15:12:56 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-01-21 15:12:56 +0100
commit962ebb8c61a17f889ae1558f6a090ccbd5fa5423 (patch)
treeb63d2a379666fa0f17866259be5a6c9164f3b982 /hhvm/extensionimpl.h
parent699f3c34daf086a3e9046c73c4e3785ea44a063d (diff)
fixed compile issues for HHVM (not that the HHVM version works, but people try to compile it, see commit 5235f87126cc2bca3907daada9f59e0c7c7bc834)
Diffstat (limited to 'hhvm/extensionimpl.h')
-rw-r--r--hhvm/extensionimpl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/hhvm/extensionimpl.h b/hhvm/extensionimpl.h
index deb80a6..3444f8b 100644
--- a/hhvm/extensionimpl.h
+++ b/hhvm/extensionimpl.h
@@ -30,8 +30,9 @@ public:
* @param data Pointer to the extension object created by the extension programmer
* @param name Name of the extension
* @param version Version identifier of the extension
+ * @param apiversion API version number
*/
- ExtensionImpl(Extension *data, const char *name, const char *version) : ExtensionBase(data) {}
+ ExtensionImpl(Extension *data, const char *name, const char *version, int apiversion) : ExtensionBase(data) {}
/**
* Destructor