mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Update base/base/itoa.h
Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
This commit is contained in:
parent
de64c6b103
commit
bfa67ffc8c
@ -352,7 +352,7 @@ static inline char * writeUIntText(T x, char * p)
|
|||||||
static_assert(is_unsigned_v<T>);
|
static_assert(is_unsigned_v<T>);
|
||||||
|
|
||||||
int len = digits10(x);
|
int len = digits10(x);
|
||||||
auto *pp = p + len;
|
auto * pp = p + len;
|
||||||
while (x >= 100)
|
while (x >= 100)
|
||||||
{
|
{
|
||||||
const auto i = x % 100;
|
const auto i = x % 100;
|
||||||
|
Loading…
Reference in New Issue
Block a user