mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 10:47:35 +02:00
Remove literal separator to satisfy some compilers
This commit is contained in:
committed by
Victor Zverovich
parent
7dbe3dcded
commit
dbddb1d066
@ -1896,7 +1896,7 @@ FMT_INLINE int remove_trailing_zeros(uint64_t& n) noexcept {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// If n is not divisible by 10^8, work with n itself.
|
// If n is not divisible by 10^8, work with n itself.
|
||||||
const uint64_t mod_inv_5 = 0xcccccccc'cccccccd;
|
const uint64_t mod_inv_5 = 0xcccccccccccccccd;
|
||||||
const uint64_t mod_inv_25 = mod_inv_5 * mod_inv_5;
|
const uint64_t mod_inv_25 = mod_inv_5 * mod_inv_5;
|
||||||
|
|
||||||
int s = 0;
|
int s = 0;
|
||||||
|
Reference in New Issue
Block a user