summaryrefslogtreecommitdiff
path: root/deps/hiredis/read.h
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2018-12-06 11:23:23 +0100
committerantirez <antirez@gmail.com>2019-01-09 17:00:30 +0100
commita2b2d88f384c4ad3e812cceccd4720a9c650207c (patch)
treee27a7235441111e10817f56d260425fea95a37a5 /deps/hiredis/read.h
parent005915b5c3ed1fcb79e3e0ed6b5d41c057ef5a3b (diff)
downloadredis-a2b2d88f384c4ad3e812cceccd4720a9c650207c.tar.gz
RESP3: hiredis: initial double implementation.
Diffstat (limited to 'deps/hiredis/read.h')
-rw-r--r--deps/hiredis/read.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/deps/hiredis/read.h b/deps/hiredis/read.h
index 84ee15cb6..e7c4bd308 100644
--- a/deps/hiredis/read.h
+++ b/deps/hiredis/read.h
@@ -81,6 +81,7 @@ typedef struct redisReplyObjectFunctions {
void *(*createString)(const redisReadTask*, char*, size_t);
void *(*createArray)(const redisReadTask*, int);
void *(*createInteger)(const redisReadTask*, long long);
+ void *(*createDouble)(const redisReadTask*, double);
void *(*createNil)(const redisReadTask*);
void (*freeObject)(void*);
} redisReplyObjectFunctions;