| 232 | return SetStringImpl(str, REDIS_REPLY_ERROR); |
| 233 | } |
| 234 | inline void RedisReply::FormatError(const char* fmt, ...) { |
| 235 | va_list ap; |
| 236 | va_start(ap, fmt); |
| 237 | FormatStringImpl(fmt, ap, REDIS_REPLY_ERROR); |
| 238 | va_end(ap); |
| 239 | } |
| 240 | |
| 241 | inline void RedisReply::SetInteger(int64_t value) { |
| 242 | if (_type != REDIS_REPLY_NIL) { |