mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-19 20:18:49 +00:00
Too much Python 🐍
This commit is contained in:
parent
6f0387fc22
commit
430c45d618
2
format.h
2
format.h
@ -249,7 +249,7 @@ extern const uint64_t POWERS_OF_10[];
|
|||||||
// Returns the number of decimal digits in n. Leading zeros are not counted
|
// Returns the number of decimal digits in n. Leading zeros are not counted
|
||||||
// except for n == 0 in which case CountDigits returns 1.
|
// except for n == 0 in which case CountDigits returns 1.
|
||||||
inline unsigned CountDigits(uint64_t n) {
|
inline unsigned CountDigits(uint64_t n) {
|
||||||
#if FMT_GCC_VERSION >= 400 or __has_builtin(__builtin_clzll)
|
#if FMT_GCC_VERSION >= 400 || __has_builtin(__builtin_clzll)
|
||||||
// Based on http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog10
|
// Based on http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog10
|
||||||
// and the benchmark https://github.com/localvoid/cxx-benchmark-count-digits.
|
// and the benchmark https://github.com/localvoid/cxx-benchmark-count-digits.
|
||||||
uint64_t t = (64 - __builtin_clzll(n | 1)) * 1233 >> 12;
|
uint64_t t = (64 - __builtin_clzll(n | 1)) * 1233 >> 12;
|
||||||
|
Loading…
Reference in New Issue
Block a user