Fix type name [#DEVTOOLS-3381]

This commit is contained in:
Георгий Кондратьев 2017-06-19 20:41:01 +00:00 committed by alexey-milovidov
parent 1b17f6191b
commit 7ca75180c7

View File

@ -139,7 +139,7 @@ static std::vector<String> parseDescription(const String & description, size_t l
add_leading_zeroes = true;
for (size_t id = left; id <= right; ++id)
{
String cur = toString<uint64>(id);
String cur = toString<UInt64>(id);
if (add_leading_zeroes)
{
while (cur.size() < len)