From bbcf32a37fa856ba0b50b489ba05bd3d43800fcc Mon Sep 17 00:00:00 2001 From: Pavlo Yatsukhnenko Date: Sat, 21 Mar 2020 17:04:15 +0200 Subject: [PATCH] Remove unused declarations --- redis_cluster.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/redis_cluster.h b/redis_cluster.h index b7f4ae0..379d034 100644 --- a/redis_cluster.h +++ b/redis_cluster.h @@ -91,19 +91,12 @@ } \ resp_func(INTERNAL_FUNCTION_PARAM_PASSTHRU, c, ctx); -/* For the creation of RedisCluster specific exceptions */ -PHP_REDIS_API zend_class_entry *rediscluster_get_exception_base(int root); - /* Create cluster context */ zend_object *create_cluster_context(zend_class_entry *class_type); /* Free cluster context struct */ void free_cluster_context(zend_object *object); - -/* Inittialize our class with PHP */ -void init_rediscluster(void); - /* RedisCluster method implementation */ PHP_METHOD(RedisCluster, __construct); PHP_METHOD(RedisCluster, close);