From caa165ece89136a4ef6bde87df865d4288ff94cf Mon Sep 17 00:00:00 2001 From: andot Date: Wed, 23 Jul 2014 14:39:05 +0800 Subject: Fixed compatibility issue with VS2013 --- zend/super.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'zend/super.cpp') 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); } /** -- cgit v1.2.3