Fixed build

This commit is contained in:
Alexey Milovidov 2020-03-21 08:00:53 +03:00
parent fea3ceca05
commit a13f3f6d6e

View File

@ -1009,7 +1009,7 @@ readTextWithSizeSuffix(T & x, ReadBuffer & buf)
}
else if (*buf.position() == 'i')
{
x = (x << power_of_two); /// For binary suffixes, such as ki, Mi, Gi, etc.
x = (x << power_of_two); // NOLINT /// For binary suffixes, such as ki, Mi, Gi, etc.
++buf.position();
}
return;