Fixed error [#CLICKHOUSE-2].

This commit is contained in:
Alexey Milovidov 2017-12-09 20:16:24 +03:00
parent 8758d9b28c
commit 71116c4d82

View File

@ -23,7 +23,7 @@ namespace std
static constexpr bool is_signed = false;
static constexpr bool is_integer = true;
static constexpr int radix = 2;
static constexpr int digits = 8 * sizeof(char) * 2;
static constexpr int digits = 128;
static constexpr __uint128_t min () { return 0; } // used in boost 1.65.1+
};
}