summaryrefslogtreecommitdiff
path: root/zend/super.cpp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-08-29 10:24:41 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-08-29 10:24:41 +0200
commit856aaf9880848cab154189a36e33d4d10e3da185 (patch)
tree944174ef4046a5af0f27d4d7142aa72b82f8c2f5 /zend/super.cpp
parentcb6808285bb0e41f90245e568951ee24b6a5faf2 (diff)
parent780fde0f4c07920c210cc45ef0c5e4b05f81c76f (diff)
Merge pull request #128 from andot/vs2013
Fixed compatibility issue with VS2013
Diffstat (limited to 'zend/super.cpp')
-rw-r--r--zend/super.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zend/super.cpp b/zend/super.cpp
index c25efeb..a2fa0a9 100644
--- a/zend/super.cpp
+++ b/zend/super.cpp
@@ -40,7 +40,7 @@ Value Super::operator[](const std::string &key)
Value value(PG(http_globals)[_index]);
// pass on the call
- return value[key];
+ return value.get(key);
}
/**
@@ -61,7 +61,7 @@ Value Super::operator[](const char *key)
Value value(PG(http_globals)[_index]);
// pass on the call
- return value[key];
+ return value.get(key);
}
/**