Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Favre-Felix <n.favrefelix@gmail.com>2011-08-19 16:04:37 +0400
committerNicolas Favre-Felix <n.favrefelix@gmail.com>2011-08-19 16:04:37 +0400
commit4fc2387b311f7a0bf2bce4ee3fb8203b7fdfbdb6 (patch)
treef2c532be47c83bfd56d955b3fc1ee697f1e56da5 /redis_array.h
parentf28debc6a4ee250606690a239960fe7db41818d8 (diff)
Added bool index parameter to RedisArray constructor
Diffstat (limited to 'redis_array.h')
-rw-r--r--redis_array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_array.h b/redis_array.h
index 26362c37..b6395f8d 100644
--- a/redis_array.h
+++ b/redis_array.h
@@ -34,7 +34,7 @@ typedef struct RedisArray_ {
uint32_t crc32(const char *s, size_t sz);
void redis_array_init(RedisArray *ra);
-RedisArray *ra_make_array(HashTable *hosts, zval *z_fun, HashTable *hosts_prev);
+RedisArray *ra_make_array(HashTable *hosts, zval *z_fun, HashTable *hosts_prev, zend_bool b_index);
zval *ra_find_node(RedisArray *ra, const char *key, int key_len, int *out_pos);
#endif