Move to standard integer types #1147

This commit is contained in:
Alex Fabijanic
2017-10-05 17:03:11 -05:00
parent de64a1cbd2
commit 71531d1a75
10 changed files with 14 additions and 13 deletions

View File

@@ -201,7 +201,7 @@ struct RedisTypeTraits<BulkString>
{
std::string s = value.value();
return marker
+ NumberFormatter::format(s.length())
+ NumberFormatter::format(static_cast<Poco::UInt64>(s.length()))
+ LineEnding::NEWLINE_CRLF
+ s
+ LineEnding::NEWLINE_CRLF;