1
0
Fork 0
mirror of https://github.com/KingDuckZ/incredis synced 2024-11-23 00:33:46 +00:00

Add missing implementation for get<StatusString>().

This commit is contained in:
King_DuckZ 2016-11-28 16:03:07 +00:00
parent 3b57d01b0f
commit 0da5c0de3c

View file

@ -79,10 +79,22 @@ namespace redis {
return get_error_string(parReply);
}
template <>
const StatusString& get<StatusString> (const Reply& parReply) {
static const char empty_str[1] = "";
static const StatusString empty_status(empty_str, 0);
if (parReply.is_nil())
return empty_status;
assert(parReply.is_status());
return boost::get<StatusString>(parReply);
}
template const std::string& get<std::string> ( const Reply& parReply );
template const std::vector<Reply>& get<std::vector<Reply>> ( const Reply& parReply );
template const long long& get<long long> ( const Reply& parReply );
template const ErrorString& get<ErrorString> ( const Reply& parReply );
template const StatusString& get<StatusString> ( const Reply& parReply );
bool Reply::is_integer() const {
return RedisVariantType_Integer == this->which();